rust-ipfs/Cargo.toml

45 lines
1.1 KiB
TOML
Raw Normal View History

2019-01-30 15:03:09 +01:00
[package]
2019-02-01 17:59:08 +01:00
name = "ipfs"
2019-01-30 15:03:09 +01:00
version = "0.1.0"
authors = ["David Craven <david@craven.ch>"]
edition = "2018"
2020-02-20 15:15:10 +02:00
license = "MIT OR Apache-2.0"
2019-01-30 15:03:09 +01:00
2019-12-05 19:47:23 +02:00
[features]
default = []
2020-03-05 18:09:45 +01:00
nightly = []
2019-12-05 19:47:23 +02:00
all = ["rocksdb"]
2019-01-30 15:03:09 +01:00
[dependencies]
2020-02-23 14:10:32 +01:00
async-std = { version = "1.5.0", features = [ "unstable", "std" ] }
async-trait = "0.1.24"
byteorder = "1.3.4"
2019-03-08 15:48:12 +01:00
cbor = { git = "https://github.com/dvc94ch/rust-cbor", branch = "read-data-item" }
cid = { git = "https://github.com/multiformats/rust-cid", branch = "master" }
2020-03-03 12:13:46 +01:00
dirs = "2.0.2"
2020-02-23 15:16:14 +01:00
domain = { git = "https://github.com/nlnetlabs/domain", features = ["resolv"] }
2020-02-23 14:10:32 +01:00
env_logger = "0.7.1"
2020-03-06 13:18:27 +01:00
failure = "0.1.7"
2020-02-23 14:10:32 +01:00
fnv = "1.0.6"
futures = { version = "0.3.4", features = [ "compat", "io-compat", "async-await" ] }
2020-03-06 13:18:27 +01:00
libp2p = "0.16.2"
2020-02-23 14:10:32 +01:00
log = "0.4.8"
2020-03-06 13:18:27 +01:00
multibase = "0.8.0"
multihash = "0.10.0"
2020-02-06 18:42:34 +01:00
prost = "0.6.1"
2020-02-23 14:10:32 +01:00
rand = "0.7.3"
rocksdb = { version = "0.13.0", optional = true }
rustc-serialize = "0.3.24"
serde = "1.0.104"
serde_derive = "1.0.104"
serde_json = "1.0.48"
2020-02-06 18:42:34 +01:00
[build-dependencies]
2020-02-06 20:02:39 +01:00
prost-build = "0.6.1"
[workspace]
members = [ "http" ]
2020-03-05 18:09:45 +01:00
[patch.crates-io]
ctr = { git = "https://github.com/koivunej/stream-ciphers.git", branch = "ctr128-64to128" }