From 2f909101d1fcbf70415acd3794f8a414069c5e77 Mon Sep 17 00:00:00 2001 From: David Palm Date: Tue, 3 Jul 2018 09:37:32 +0200 Subject: [PATCH] Rename ethcore-bytes to parity-bytes --- Cargo.toml | 2 +- kvdb/Cargo.toml | 2 +- kvdb/src/lib.rs | 2 +- {ethcore-bytes => parity-bytes}/Cargo.toml | 2 +- {ethcore-bytes => parity-bytes}/src/lib.rs | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename {ethcore-bytes => parity-bytes}/Cargo.toml (87%) rename {ethcore-bytes => parity-bytes}/src/lib.rs (100%) diff --git a/Cargo.toml b/Cargo.toml index 6c8ee8e..a5e0073 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace] members = [ - "ethcore-bytes", + "parity-bytes", "kvdb", ] \ No newline at end of file diff --git a/kvdb/Cargo.toml b/kvdb/Cargo.toml index 26c7bea..3df489e 100644 --- a/kvdb/Cargo.toml +++ b/kvdb/Cargo.toml @@ -6,4 +6,4 @@ authors = ["Parity Technologies "] [dependencies] elastic-array = "0.10" error-chain = { version = "0.12", default-features = false } -ethcore-bytes = { path = "../ethcore-bytes" } +parity-bytes = { path = "../parity-bytes" } diff --git a/kvdb/src/lib.rs b/kvdb/src/lib.rs index 78e7b2d..00e5405 100644 --- a/kvdb/src/lib.rs +++ b/kvdb/src/lib.rs @@ -19,7 +19,7 @@ #[macro_use] extern crate error_chain; extern crate elastic_array; -extern crate ethcore_bytes as bytes; +extern crate parity_bytes as bytes; use std::io; use std::path::Path; diff --git a/ethcore-bytes/Cargo.toml b/parity-bytes/Cargo.toml similarity index 87% rename from ethcore-bytes/Cargo.toml rename to parity-bytes/Cargo.toml index b20e38a..798b37f 100644 --- a/ethcore-bytes/Cargo.toml +++ b/parity-bytes/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "ethcore-bytes" +name = "parity-bytes" version = "0.1.0" authors = ["Parity Technologies "] description = "byte utilities for Parity" diff --git a/ethcore-bytes/src/lib.rs b/parity-bytes/src/lib.rs similarity index 100% rename from ethcore-bytes/src/lib.rs rename to parity-bytes/src/lib.rs