-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (30 loc) · 938 Bytes
/
Cargo.toml
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/cpu", "crates/fpga-driver", "crates/fpga-sim", "crates/gpu"]
[package]
name = "net-finder"
version = "0.1.0"
edition = "2021"
[features]
no-trie = []
[dependencies]
anyhow = "1.0.66"
arbitrary = { version = "1.2.0", features = ["derive"] }
bytemuck = { version = "1.13.1", features = ["min_const_generics", "derive"] }
chrono = { version = "0.4.26", features = [
"std",
"clock",
], default-features = false }
clap = { version = "4.0.29", features = ["derive"] }
ctrlc = "3.4.0"
indicatif = { version = "0.17.3", features = ["rayon"] }
itertools = "0.12.0"
postcard = { version = "1.0.2", features = ["use-std"] }
rayon = "1.7.0"
rustc-hash = "1.1.0"
serde = { version = "1.0.149", features = ["derive"] }
serde_json = "1.0.96"
spliter = "0.1.0"
[profile.release]
debug = true
[patch.crates-io]
wishbone-bridge = { git = "https://github.com/Liamolucko/wishbone-utils", branch = "litex-server" }