-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (66 loc) · 1.61 KB
/
Copy pathCargo.toml
File metadata and controls
80 lines (66 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[package]
name = "lay"
version = "0.2.252"
edition = "2021"
description = "Alpha Double Shift RU/EN layout rescue for Linux desktops"
license-file = "LICENSE"
repository = "https://github.com/radislabus-star/lay-public"
readme = "README.md"
rust-version = "1.75"
keywords = ["keyboard", "gnome", "wayland", "layout", "russian"]
categories = ["command-line-utilities"]
[features]
default = []
direct-llm = ["dep:llama_cpp"]
lexical-compiler = []
[[bin]]
name = "lay"
path = "src/main.rs"
[[bin]]
name = "lay-daemon"
path = "src/bin/lay_daemon.rs"
[[bin]]
name = "lay-test-input"
path = "src/bin/lay_test_input.rs"
[[bin]]
name = "lay-ngram-corpus"
path = "src/bin/lay_ngram_corpus.rs"
[[bin]]
name = "lay-lem-research"
path = "src/bin/lay_lem_research.rs"
[[bin]]
name = "lay-nanda-wave-eval"
path = "src/bin/lay_nanda_wave_eval.rs"
[[bin]]
name = "lay-nanda-dataset"
path = "src/bin/lay_nanda_dataset.rs"
[[bin]]
name = "lay-nanda-wave-train"
path = "src/bin/lay_nanda_wave_train.rs"
[[bin]]
name = "lay-ibus-engine"
path = "src/bin/lay_ibus_engine.rs"
[[bin]]
name = "lay-debug-actions"
path = "src/bin/lay_debug_actions.rs"
[[bin]]
name = "lay-memory-report"
path = "src/bin/lay_memory_report.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
arboard = "3"
ureq = { version = "2", features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
evdev = "0.13"
zbus = "5.15.0"
x11rb = { version = "0.13", features = ["xkb"] }
libc = "0.2"
niri-ipc = "26"
llama_cpp = { version = "0.3.2", optional = true }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
panic = "abort"