-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (30 loc) · 819 Bytes
/
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
[workspace]
members = ["gui", "term", "hooks", "config", "escape"]
exclude = ["test-programs/kitty-key"]
resolver = "2"
[workspace.dependencies]
config = { path = "./config" }
pretty_hooks = { path = "./hooks" }
pretty_term = { path = "./term" }
escape = { path = "./escape" }
prettyterm_gui = { path = "./gui" }
dioxus = { version = "0.6", features = ["html", "hooks"] }
dioxus-document = "0.6"
dioxus-form = "0.1.3"
serde = "1.0"
anyhow = "1.0.79"
fern = "0.7"
log = "0.4.22"
async-channel = "2.2.0"
async-option = "0.1.1"
tokio = { version = "1.42", features = ["time", "rt", "sync", "io-util"]}
futures = "0.3.31"
keyboard-types = { version = "0.7", features = ["serde"] }
[profile]
[profile.wasm-dev]
inherits = "dev"
opt-level = 1
[profile.server-dev]
inherits = "dev"
[profile.android-dev]
inherits = "dev"