forked from ShinMegamiBoson/OpenPlanter
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (40 loc) · 934 Bytes
/
Cargo.toml
File metadata and controls
42 lines (40 loc) · 934 Bytes
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
[workspace]
resolver = "2"
members = [
"crates/op-core",
"crates/op-model",
"crates/op-tools",
"crates/op-engine",
"crates/op-runtime",
"crates/op-tui",
"crates/op-scripts",
"crates/op-cli",
]
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["stream", "json"] }
clap = { version = "4", features = ["derive"] }
ratatui = "0.29"
crossterm = "0.28"
thiserror = "2"
anyhow = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
chrono = { version = "0.4", features = ["serde"] }
regex = "1"
base64 = "0.22"
crc32fast = "1"
rand = "0.8"
uuid = { version = "1", features = ["v4"] }
csv = "1"
async-trait = "0.1"
futures = "0.3"
tokio-util = "0.7"
bytes = "1"
parking_lot = "0.12"
[profile.release]
lto = true
codegen-units = 1
strip = true