2017-02-14 19:30:37 +01:00
|
|
|
[package]
|
2017-02-16 14:51:33 +01:00
|
|
|
description = "Parity IPFS-compatible API"
|
|
|
|
name = "parity-ipfs-api"
|
2018-04-25 16:25:43 +02:00
|
|
|
version = "1.12.0"
|
2017-02-14 19:30:37 +01:00
|
|
|
license = "GPL-3.0"
|
|
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
ethcore = { path = "../ethcore" }
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
parity-bytes = { git = "https://github.com/paritytech/parity-common" }
|
2018-04-02 13:12:52 +02:00
|
|
|
ethereum-types = "0.3"
|
2018-03-24 06:43:28 +01:00
|
|
|
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.11" }
|
|
|
|
jsonrpc-http-server = { git = "https://github.com/paritytech/jsonrpc.git", branch = "parity-1.11" }
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
rlp = { git = "https://github.com/paritytech/parity-common" }
|
2017-06-07 12:31:12 +02:00
|
|
|
cid = "0.2"
|
2018-01-17 11:45:29 +01:00
|
|
|
multihash = "0.7"
|
2017-10-05 12:35:01 +02:00
|
|
|
unicase = "2.0"
|
2018-06-11 12:26:49 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
ethcore = { path = "../ethcore", features = ["test-helpers"] }
|