forked from rs-ipfs/rust-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (39 loc) · 1.07 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
39
40
41
42
43
44
45
[package]
name = "ipfs"
version = "0.1.0"
authors = ["David Craven <david@craven.ch>"]
edition = "2018"
license = "MIT OR Apache-2.0"
[features]
default = []
nightly = []
all = ["rocksdb"]
[dependencies]
anyhow = "1.0.26"
async-std = { version = "1.5.0", features = ["attributes", "std"] }
async-trait = "0.1.24"
bitswap = { path = "bitswap" }
byteorder = "1.3.4"
crossbeam = "0.7.3"
dirs = "2.0.2"
domain = { git = "https://github.com/nlnetlabs/domain", features = ["resolv"] }
futures = { version = "0.3.4", features = ["compat", "io-compat"] }
libipld = { version = "0.1.0", features = ["dag-pb"] }
libp2p = "0.16.2"
log = "0.4.8"
multibase = "0.8.0"
multihash = "0.10.1"
prost = "0.6.1"
rand = "0.7.3"
rocksdb = { version = "0.13.0", optional = true }
serde = { version = "1.0.104", features = ["derive"] }
serde_json = "1.0.48"
thiserror = "1.0.11"
[build-dependencies]
prost-build = "0.6.1"
[dev-dependencies]
env_logger = "0.7.1"
[workspace]
members = [ "bitswap", "http" ]
[patch.crates-io]
ctr = { git = "https://github.com/koivunej/stream-ciphers.git", branch = "ctr128-64to128" }