-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
118 lines (114 loc) · 3.34 KB
/
Cargo.toml
File metadata and controls
118 lines (114 loc) · 3.34 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[workspace]
resolver = "3"
members = [
"crates/certutil",
"crates/config",
"crates/data",
"crates/gateway",
"crates/inspect",
"crates/leases",
"crates/messages",
"crates/network",
"crates/resources",
"crates/scheduler",
"crates/telemetry",
"crates/worker",
]
default-members = [
"crates/certutil",
"crates/data",
"crates/gateway",
"crates/scheduler",
"crates/worker",
"crates/inspect",
]
[workspace.package]
publish = false
edition = "2024"
version = "0.0.0"
[workspace.dependencies]
axum = { version = "0.8.4", features = ["http2"] }
candle-core = "0.9.1"
ciborium = "0.2.2"
clap = { version = "4.5.31", features = ["derive"] }
console = "0.15.8"
documented = "0.9.2"
figment = { version = "0.10", features = ["toml", "env"] }
futures-util = "0.3"
http-body-util = "0.1.3"
blake3 = { version = "1.5", features = ["rayon", "mmap"] }
hypha-config = { path = "crates/config" }
hypha-data = { path = "crates/data" }
hypha-leases = { path = "crates/leases" }
hypha-messages = { path = "crates/messages" }
hypha-network = { path = "crates/network" }
hypha-resources = { path = "crates/resources" }
hypha-telemetry = { path = "crates/telemetry" }
indicatif = "0.18.3"
indoc = "2"
libp2p = { version = "0.56.0", features = [
"cbor",
"dcutr",
"dns",
"gossipsub",
"identify",
"kad",
"ping",
"quic",
"relay",
"request-response",
"serde",
"tcp",
"tls",
"tokio",
"yamux",
] }
libp2p-stream = { version = "0.4.0-alpha" }
libp2p-swarm-test = { version = "0.6.0", features = ["tokio"] }
miette = { version = "7.6.0", features = ["fancy"] }
mime = "0.3.17"
mockall = "0.14.0"
nix = { version = "0.30.1", features = ["signal"] }
pin-project = "1.1.7"
proptest = "1.6.0"
rand = "0.9.2"
rayon = "1.11.0"
rcgen = { version = "0.13", features = ["pem", "x509-parser"] }
reqwest = { version = "0.12", default-features = false, features = ["stream", "json", "rustls-tls"] }
rustls = { version = "0.23", features = ["std"] }
rustls-pemfile = "2.1"
safetensors = "0.4.5"
serde = { version = "1.0.218", features = ["derive"] }
serde_json = "1.0.140"
sha2 = "0.10"
tempfile = "3.20.0"
thiserror = "2.0.12"
tokio = { version = "1.43.0", features = [
"fs",
"macros",
"process",
"rt-multi-thread",
"sync",
"signal",
"io-util",
] }
tokio-retry = "0.3.0"
tokio-stream = { version = "0.1.17", features = ["fs", "sync"] }
tokio-util = { version = "0.7.15", features = ["compat", "rt"] }
toml = { version = "0.9.5" }
tower = { version = "0.5.2", features = ["util"] }
tracing = "0.1.41"
tracing-indicatif = "0.3.6"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
utoipa = { version = "5.4.0", features = ["axum_extras", "url", "uuid"] }
uuid = { version = "1.17.0", features = ["serde", "v4"] }
[profile.profiling]
inherits = "release"
debug = true
[patch.crates-io]
# Patch 'libp2p' to enable mTLS support
libp2p = { git = "https://github.com/hypha-space/rust-libp2p", tag = "v0.56.0-mtls5" }
libp2p-quic = { git = "https://github.com/hypha-space/rust-libp2p", tag = "v0.56.0-mtls5" }
libp2p-stream = { git = "https://github.com/hypha-space/rust-libp2p", tag = "v0.56.0-mtls5" }
libp2p-swarm-test = { git = "https://github.com/hypha-space/rust-libp2p", tag = "v0.56.0-mtls5" }
libp2p-tls = { git = "https://github.com/hypha-space/rust-libp2p", tag = "v0.56.0-mtls5" }