-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (46 loc) · 1.13 KB
/
Copy pathCargo.toml
File metadata and controls
49 lines (46 loc) · 1.13 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
[workspace]
resolver = "2"
members = [
"crates/fl-core",
"crates/fl-adb",
"crates/fl-ios",
"crates/fl-flutter",
"crates/fl-vmservice",
"crates/fl-tui",
"crates/flutter-cli",
]
[workspace.package]
edition = "2021"
rust-version = "1.79"
license = "MIT"
authors = ["Antoine Gonthier"]
repository = "https://github.com/Antoinegtir/flutter-cli"
homepage = "https://github.com/Antoinegtir/flutter-cli"
[workspace.dependencies]
anyhow = "1.0"
thiserror = "2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.36", features = ["full"] }
tokio-stream = "0.1"
tokio-util = { version = "0.7", features = ["codec", "io"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
ratatui = "0.30"
crossterm = { version = "0.29", features = ["event-stream"] }
clap = { version = "4.5", features = ["derive"] }
tokio-tungstenite = "0.21"
futures-util = "0.3"
async-trait = "0.1"
bytes = "1.5"
chrono = "0.4"
toml = "1.1"
directories = "6"
url = "2.5"
mdns-sd = "0.20"
termbg = "0.6"
[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"