rust-ipfs/Cargo.toml
Joonas Koivunen a21c305634 fix aes-128-ctr to match openssl impl
this is temporary fix ... the branch seems to work and passes some
randomized tests against openssl but the PR is still pending.
2019-12-15 17:25:51 +01:00

39 lines
955 B
TOML

[package]
name = "ipfs"
version = "0.1.0"
authors = ["David Craven <david@craven.ch>"]
edition = "2018"
[features]
default = []
all = ["rocksdb"]
[dependencies]
byteorder = "*"
cbor = { git = "https://github.com/dvc94ch/rust-cbor", branch = "read-data-item" }
cid = { git = "https://github.com/multiformats/rust-cid", branch = "master" }
domain = "*"
env_logger = "*"
failure = "*"
fnv = "*"
futures = { version = "0.3", features = [ "compat", "io-compat", "async-await" ] }
libp2p = { version = "0.13.1", git = "https://github.com/libp2p/rust-libp2p" }
log = "*"
multibase = "*"
multihash = "*"
protobuf = "2.0.2"
rand = "0.6"
rustc-serialize = "0.3"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
tokio = { version = "0.1.21" }
tokio-fs = { version = "0.1" }
xdg = "*"
async-trait = "*"
rocksdb = { version = "*", optional = true }
[patch.crates-io]
ctr = { git = "https://github.com/koivunej/stream-ciphers.git", branch = "ctr128-64to128" }