-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
64 lines (61 loc) · 1.83 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
[package]
name = "flx"
version = "0.2.0"
edition = "2021"
description = "Flutter tui tool"
repository = "https://github.com/itome/flx"
authors = ["Takeshi Tsukamoto <[email protected]>"]
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["crates/android", "crates/daemon", "crates/devtools", "crates/ios", "crates/vscode"]
[dependencies]
daemon = { path = "crates/daemon" }
devtools = { path = "crates/devtools" }
ios = { path = "crates/ios" }
android = { path = "crates/android" }
vscode = { path = "crates/vscode" }
async-trait = "0.1.77"
better-panic = "0.3.0"
clap = { version = "4.4.5", features = [
"derive",
"cargo",
"wrap_help",
"unicode",
"string",
"unstable-styles",
] }
color-eyre = "0.6.2"
config = "0.13.3"
crossterm = { version = "0.27.0", features = ["serde", "event-stream"] }
derive_deref = "1.1.1"
directories = "5.0.1"
futures = "0.3.28"
human-panic = "1.2.0"
lazy_static = "1.4.0"
libc = "0.2.148"
log = "0.4.20"
pretty_assertions = "1.4.0"
ratatui = { version = "0.26.1", features = ["serde", "macros", "unstable-widget-ref"] }
redux-rs = { git = "https://github.com/redux-rs/redux-rs", features = [
"middleware_thunk",
] }
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
signal-hook = "0.3.17"
strip-ansi-escapes = "0.2.0"
strum = { version = "0.25.0", features = ["derive"] }
tokio = { version = "1.32.0", features = ["full"] }
tokio-util = "0.7.9"
tracing = "0.1.37"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "serde"] }
uuid = "1.7.0"
syntect = "5.2.0"
syntect-tui = "3.0.2"
url = "2.5.0"
textwrap = "0.16.1"
serde_yaml = "0.9.34"
indoc = "2.0.5"
[build-dependencies]
vergen = { version = "8.2.6", features = ["build", "git", "gitoxide", "cargo"] }