This repository has been archived by the owner on May 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
79 lines (69 loc) · 1.89 KB
/
Cargo.toml
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
[package]
name = "kbdgen"
version = "2.0.0-alpha.19"
authors = [
"Brendan Molloy <brendan@bbqsrc.net>",
"Pascal Hertleif <pascal@technocreatives.com>"
]
edition = "2018"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/divvun/kbdgen"
[dependencies]
py-language-tags = { path = "modules/language-tags" }
py-logger = { path = "modules/logger" }
py-reqwest = { path = "modules/reqwest" }
derive-collect-docs = "0.1.0"
serde = { version = "1.0.110", features = ["derive"] }
serde_yaml = { git = "https://github.com/divvun/serde-yaml/", branch = "feature/multiline-strings" }
strum = "0.21.0"
strum_macros = "0.21.1"
log = "0.4.8"
unic-ucd-category = "0.9.0"
lazy_static = "1.4.0"
regex = "1.3.7"
unic-segment = "0.9.0"
shrinkwraprs = "0.3.0"
xml-rs = "0.8.3"
structopt = "0.3.14"
env_logger = "0.7.1"
tempfile = "3"
# CLI stuff
console = "0.14.1"
globwalk = "0.8.0"
serde-xml-rs = "0.4.0"
xkb-parser = "0.1"
x11-keysymdef = "0.2"
nom = "5.1.1"
chrono = "0.4.11"
thiserror = "1.0.19"
anyhow = "1.0.31"
backtrace = "0.3.48"
bigdecimal = "0.2"
toml = "0.5.6"
reqwest = { version = "0.11.3", default-features = false, features = ["rustls-tls", "gzip", "blocking"] }
pahkat-client = { git = "https://github.com/divvun/pahkat", branch = "feature/tokio-1", features = ["prefix"] }
pathos = "0.3.0-pre.3"
tokio = { version = "1.6.1", features = ["full"] }
futures = { version = "0.3.6", default-features = false, features = ["alloc"] }
zip = "0.5.13"
[dependencies.pyembed]
version = "0.16.0"
default-features = false
features = ["build-mode-pyoxidizer-exe", "cpython-link-unresolved-static"]
[target.'cfg(windows)'.dependencies]
dialoguer = "0.8.0"
[target.'cfg(unix)'.dependencies]
skim = "0.7.0"
[build-dependencies]
embed-resource = "1.3"
[dev-dependencies]
pretty_env_logger = "0.4.0"
proptest = "0.9.6"
assert_cmd = "1.0.1"
[profile.release]
debug = true
[workspace]
members = [
# ".",
"modules/*",
]