-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (35 loc) · 1.3 KB
/
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
36
37
38
[workspace.package]
version = "0.1.0"
license = "MIT OR Apache-2.0"
edition = "2021"
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.dependencies]
thiserror = "1"
anyhow = "1"
serde = { version = "1", features = ["derive"] }
zeroize = "1.7.0"
mimalloc = "0.1.39"
reqwest = { version = "0.12.4", default-features = false, features = [
"json",
"rustls-tls",
"rustls-tls-native-roots",
"blocking",
] }
blake3 = "1.5.1"
rayon = "1.10.0"
tracing = "0.1"
rand = "0.8"
gevulot-node = { git = "https://github.com/gevulotnetwork/gevulot.git", rev = "7579a2d", default-features = false }
gevulot-common = { git = "https://github.com/gevulotnetwork/gevulot.git", rev = "7579a2d" }
gevulot-shim = { git = "https://github.com/gevulotnetwork/gevulot.git", rev = "7579a2d" }
filecoin-proofs-api = { version = "16.1.0", default-features = false, features = [
"cuda-supraseal",
] }
storage-proofs-core = { version = "16.1.0", default-features = false}
storage-proofs-post = { version = "16.1.0", default-features = false }
filecoin-hashers = { version = "~11.1.0", default-features = false, features = ["poseidon", "sha256"] }
filecoin-proofs = { version = "16.1.0", default-features = false }
[patch.crates-io]
supraseal-c2 = { git = "https://github.com/ipfs-force-community/supra_seal.git", rev = "4147e23" }