-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (38 loc) · 814 Bytes
/
Cargo.toml
File metadata and controls
44 lines (38 loc) · 814 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
43
44
[workspace]
members = [
"dtu",
"cli",
"dtu_proc_macro",
"protoc_generate",
"dtu-fs",
"dtu-decompile",
"dtu-py",
"complete",
]
resolver = "2"
[workspace.package]
version = "5.0.0-rc1"
[workspace.dependencies]
clap = { version = "4.5", features = ["derive"] }
crossbeam = "0.8"
libc = "0.2.88"
log = "0.4"
regex = "1.11"
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rand = "0.8"
rstest = "0.16"
mockall = "0.13"
base64 = "0.21"
itertools = "0.13"
lazy_static = "1.4"
sha2 = "0.10"
env_logger = "0.11"
flexi_logger = "0.30"
toml = { version = "0.8", default-features = false, features = ["parse"] }
postcard = { version = "1.0.0", features = ["alloc", "use-std"] }
[profile.dev.build-override]
opt-level = 3
[profile.release.build-override]
opt-level = 1