-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 1.1 KB
/
Copy pathCargo.toml
File metadata and controls
35 lines (32 loc) · 1.1 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
[workspace]
members = [
"crates/orchardprobe-cli",
"crates/orchardprobe-core",
"crates/orchardprobe-lab002-tools",
]
resolver = "2"
[workspace.package]
version = "0.1.0-alpha.1"
edition = "2024"
rust-version = "1.85"
license = "Apache-2.0"
repository = "https://github.com/jacklv-coder/OrchardProbe"
publish = false
[workspace.dependencies]
clap = { version = "4.5", features = ["derive"] }
crc32fast = "=1.5.0"
ed25519-dalek = { version = "=2.2.0", features = ["rand_core"] }
libc = "0.2.188"
jsonschema = { version = "0.48.2", default-features = false }
plist = { version = "=1.8.0", default-features = false, features = ["enable_unstable_features_that_may_break_with_minor_version_bumps"] }
rand_core = { version = "=0.6.4", features = ["getrandom"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "=0.10.9"
rustix = { version = "=1.1.4", features = ["fs", "process"] }
tempfile = "=3.27.0"
thiserror = "2.0"
unicode-normalization = "=0.1.24"
zip = { version = "=5.1.1", default-features = false, features = ["deflate-flate2-zlib-rs"] }
[workspace.lints.rust]
unsafe_code = "forbid"