This repository was archived by the owner on Jan 27, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (64 loc) · 1.75 KB
/
Cargo.toml
File metadata and controls
70 lines (64 loc) · 1.75 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[workspace]
members = [
"crates/discovery",
"crates/worker",
"crates/validator",
"crates/shared",
"crates/orchestrator",
"crates/p2p",
"crates/dev-utils",
"crates/prime-protocol-py",
"crates/prime-core",
]
resolver = "2"
[workspace.dependencies]
shared = { path = "crates/shared" }
p2p = { path = "crates/p2p" }
prime-core = { path = "crates/prime-core" }
actix-web = "4.9.0"
clap = { version = "4.5.27", features = ["derive"] }
serde = { version = "1.0.219", features = ["derive"] }
tokio = { version = "1.43.0", features = ["full", "macros"] }
uuid = { version = "1.12.1", features = ["v4", "serde"] }
log = { version = "0.4.26" }
env_logger = { version = "0.11.6" }
futures-util = { version = "0.3.31" }
alloy = { version = "0.15.7", features = ["full"] }
alloy-provider = { version = "^0.15.7", features = ["anvil-node"] }
url = "2.5.4"
serde_json = "1.0.137"
reqwest = "0.12.12"
hex = "0.4.3"
anyhow = "1.0.95"
toml = "0.8.20"
tokio-util = "0.7.13"
futures = "0.3.31"
chrono = "0.4.40"
directories = "6.0.0"
nalgebra = "0.33.2"
redis = "0.28.1"
redis-test = "0.8.0"
stun = "0.7.0"
mockito = "1.7.0"
iroh = "0.34.1"
rand_v8 = { package = "rand", version = "0.8.5", features = ["std"] }
rand_core_v6 = { package = "rand_core", version = "0.6.4", features = ["std"] }
rust-ipfs = "0.14"
cid = "0.11"
tracing = "0.1.41"
[workspace.package]
version = "0.3.11"
edition = "2021"
[workspace.lints.clippy]
match_same_arms = "warn"
unused_async = "warn"
uninlined_format_args = "warn"
manual_let_else = "warn"
[workspace.lints.rust]
unreachable_pub = "warn"
[workspace.metadata.rust-analyzer]
# Help rust-analyzer with proc-macros
procMacro.enable = true
procMacro.attributes.enable = true
# Use a separate target directory for rust-analyzer
targetDir = true