Skip to content

Commit

Permalink
Merge pull request #3025 from Pana/op/reorgCrates
Browse files Browse the repository at this point in the history
move crate parameters and parity-trace-types location
  • Loading branch information
Pana authored Jan 2, 2025
2 parents b8bb127 + 3ca6dfc commit 1c1ed17
Show file tree
Hide file tree
Showing 15 changed files with 8 additions and 8 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ members = [
"crates/cfxcore/executor",
"crates/cfxcore/internal_common",
"crates/cfxcore/packing-pool",
"crates/cfxcore/parameters",
"crates/parameters",
"crates/dbs/statedb",
"crates/dbs/storage",
"crates/cfxcore/vm-interpreter",
Expand Down Expand Up @@ -56,7 +56,7 @@ members = [
"crates/rpc/rpc-primitives",
"crates/rpc/rpc-cfx-types",
"crates/rpc/rpc-eth-api",
"crates/cfxcore/parity-trace-types",
"crates/rpc/parity-trace-types",
"crates/rpc/rpc-eth-impl",
"crates/util/util-macros",
"crates/rpc/rpc-utils",
Expand Down Expand Up @@ -177,7 +177,7 @@ secret-store = { path = "./crates/secret_store" }
cfxstore = { path = "./crates/cfx_store" }
network = { path = "./crates/network" }
cfxcore = { path = "./crates/cfxcore/core" }
cfx-parameters = { path = "./crates/cfxcore/parameters" }
cfx-parameters = { path = "./crates/parameters" }
cfx-execute-helper = { path = "./crates/cfxcore/execute-helper" }
cfx-executor = { path = "./crates/cfxcore/executor" }
cfx-packing-pool = { path = "./crates/cfxcore/packing-pool" }
Expand All @@ -188,7 +188,7 @@ cfx-internal-common = { path = "./crates/cfxcore/internal_common" }
cfx-rpc-eth-types = { path = "./crates/rpc/rpc-eth-types" }
cfx-rpc-primitives = { path = "./crates/rpc/rpc-primitives" }
cfx-rpc-cfx-types = { path = "./crates/rpc/rpc-cfx-types" }
cfx-parity-trace-types = { path = "./crates/cfxcore/parity-trace-types" }
cfx-parity-trace-types = { path = "./crates/rpc/parity-trace-types" }
cfx-rpc-eth-api = { path = "./crates/rpc/rpc-eth-api" }
cfx-util-macros = { path = "./crates/util/util-macros" }
cfx-rpc = { path = "./crates/rpc/rpc-eth-impl" }
Expand Down Expand Up @@ -358,6 +358,7 @@ enum-map = "0.4.0"
enum-map-derive = "0.4.0"
igd = "0.10"
ipnetwork = "0.12.6"
derivative = "2.0.2"

bigdecimal = "0.1.0"
num-bigint = "0.2.6"
Expand Down
3 changes: 1 addition & 2 deletions crates/cfxcore/internal_common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ edition = "2021"
cfx-bytes = { workspace = true }
cfx-types = { workspace = true }
cfx-parameters = { workspace = true }
cfx-vm-types = { workspace = true }
derivative = "2.0.2"
derivative = { workspace = true }
lazy_static = { workspace = true }
log = { workspace = true }
malloc_size_of = { workspace = true }
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 2 additions & 1 deletion docs/repo/layout.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ The RPC implementation for eSpace is mainly located in the [crates/rpc](crates/r
- [rpc-cfx-types](../../crates/rpc/rpc-cfx-types/): RPC type definitions for Core Space.
- [rpc-eth-types](../../crates/rpc/rpc-eth-types/): RPC type definitions for eSpace.
- [rpc-eth-api](../../crates/rpc/rpc-eth-api/): RPC interface definitions for eSpace, organized by namespace.
- [rpc](../../crates/rpc/rpc/): RPC interface implementation for eSpace.
- [rpc-eth-impl](../../crates/rpc/rpc-eth-impl/): RPC interface implementation for eSpace.
- [rpc-cfx-impl](../../crates/rpc/rpc-cfx-impl/): RPC interface implementation for Core Space.
- [rpc-builder](../../crates/rpc/rpc-builder/): Logic for RPC interface registration and service startup.
- [rpc-utils](../../crates/rpc/rpc-utils/): Implementation of common utilities, such as error code definitions.

Expand Down

0 comments on commit 1c1ed17

Please sign in to comment.