Rename `parity-ipfs` to `parity-ipfs-api`

This commit is contained in:
maciejhirsz 2017-02-16 14:51:33 +01:00
parent ad8e3f0230
commit c4b4a22203
5 changed files with 7 additions and 7 deletions

4
Cargo.lock generated
View File

@ -33,7 +33,7 @@ dependencies = [
"num_cpus 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
"number_prefix 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
"parity-hash-fetch 1.6.0",
"parity-ipfs 1.6.0",
"parity-ipfs-api 1.6.0",
"parity-reactor 0.1.0",
"parity-rpc-client 1.4.0",
"parity-updater 1.6.0",
@ -1596,7 +1596,7 @@ dependencies = [
]
[[package]]
name = "parity-ipfs"
name = "parity-ipfs-api"
version = "1.6.0"
dependencies = [
"cid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -44,7 +44,7 @@ rlp = { path = "util/rlp" }
rpc-cli = { path = "rpc_cli" }
parity-rpc-client = { path = "rpc_client" }
parity-hash-fetch = { path = "hash-fetch" }
parity-ipfs = { path = "ipfs" }
parity-ipfs-api = { path = "ipfs" }
parity-updater = { path = "updater" }
parity-reactor = { path = "util/reactor" }
ethcore-dapps = { path = "dapps", optional = true }

View File

@ -1,6 +1,6 @@
[package]
description = "Parity IPFS crate"
name = "parity-ipfs"
description = "Parity IPFS-compatible API"
name = "parity-ipfs-api"
version = "1.6.0"
license = "GPL-3.0"
authors = ["Parity Technologies <admin@parity.io>"]

View File

@ -1,4 +1,4 @@
pub use parity_ipfs::start_server;
pub use parity_ipfs_api::start_server;
#[derive(Debug, PartialEq, Clone)]
pub struct Configuration {

View File

@ -56,7 +56,7 @@ extern crate ethcore_signer;
extern crate ethcore_util as util;
extern crate ethsync;
extern crate parity_hash_fetch as hash_fetch;
extern crate parity_ipfs;
extern crate parity_ipfs_api;
extern crate parity_reactor;
extern crate parity_updater as updater;
extern crate rpc_cli;