diff --git a/Cargo.toml b/Cargo.toml index 2dda6578fc..5ab0ba8471 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,9 +7,9 @@ members = [ "eth2/types", "eth2/utils/bls", "eth2/utils/boolean-bitfield", - "eth2/utils/eth2_bytes", "eth2/utils/hashing", "eth2/utils/honey-badger-split", + "eth2/utils/int_to_bytes", "eth2/utils/slot_clock", "eth2/utils/ssz", "eth2/utils/swap_or_not_shuffle", diff --git a/eth2/utils/eth2_bytes/Cargo.toml b/eth2/utils/int_to_bytes/Cargo.toml similarity index 88% rename from eth2/utils/eth2_bytes/Cargo.toml rename to eth2/utils/int_to_bytes/Cargo.toml index afee169f24..f7424e0328 100644 --- a/eth2/utils/eth2_bytes/Cargo.toml +++ b/eth2/utils/int_to_bytes/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "eth2_bytes" +name = "int_to_bytes" version = "0.1.0" authors = ["Paul Hauner "] edition = "2018" diff --git a/eth2/utils/eth2_bytes/src/lib.rs b/eth2/utils/int_to_bytes/src/lib.rs similarity index 100% rename from eth2/utils/eth2_bytes/src/lib.rs rename to eth2/utils/int_to_bytes/src/lib.rs diff --git a/eth2/utils/eth2_bytes/src/specs/test_vector_int_to_bytes.yml b/eth2/utils/int_to_bytes/src/specs/test_vector_int_to_bytes.yml similarity index 100% rename from eth2/utils/eth2_bytes/src/specs/test_vector_int_to_bytes.yml rename to eth2/utils/int_to_bytes/src/specs/test_vector_int_to_bytes.yml