-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 998 Bytes
/
Copy pathCargo.toml
File metadata and controls
35 lines (31 loc) · 998 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
[workspace]
resolver = "2"
members = ["crates/analyzerd", "crates/hil-tests", "crates/lp-ccf", "crates/lp-core", "crates/lp-device", "crates/lp-ftdi", "crates/lp-lpf", "crates/lp-mcp", "crates/lp-project", "crates/lp-proto", "crates/lp-sim", "crates/lp-verify", "crates/ops-coverage", "crates/xtask"]
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "Apache-2.0"
rust-version = "1.85"
[workspace.dependencies]
anyhow = "1.0"
axum = { version = "0.8", features = ["ws"] }
nusb = "0.2.1"
pest = "2.8"
pest_derive = "2.8"
schemars = "1.0"
rand = "0.9"
rand_chacha = "0.9"
fs2 = "0.4"
encoding_rs = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
thiserror = "2.0"
tokio = { version = "1.47", features = ["macros", "rt-multi-thread", "net", "signal", "sync"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["fs"] }
[workspace.lints.clippy]
unwrap_used = "deny"
expect_used = "deny"
[workspace.lints.rust]
unsafe_code = "forbid"