From ec9bc1e66a886f6a90b7890704a1a207cc708675 Mon Sep 17 00:00:00 2001 From: wenyuanhust Date: Tue, 31 Oct 2023 08:43:44 +0800 Subject: [PATCH] feat: disable hex-deserialize for test --- core/executor/Cargo.toml | 2 +- core/run/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/executor/Cargo.toml b/core/executor/Cargo.toml index 46be1dbcb..c97ab54ff 100644 --- a/core/executor/Cargo.toml +++ b/core/executor/Cargo.toml @@ -25,7 +25,7 @@ log = "0.4" lru = "0.12" molecule = "0.7" parking_lot = "0.12" -protocol = { path = "../../protocol", package = "axon-protocol", default-features = false } +protocol = { path = "../../protocol", package = "axon-protocol", features = [] } ripemd = "0.1" rlp = "0.5" rlp-derive = "0.1" diff --git a/core/run/Cargo.toml b/core/run/Cargo.toml index bf8ea623e..c6457ec57 100644 --- a/core/run/Cargo.toml +++ b/core/run/Cargo.toml @@ -30,7 +30,7 @@ core-mempool = { path = "../../core/mempool" } core-network = { path = "../../core/network" } core-rpc-client = { path = "../../core/rpc-client" } core-storage = { path = "../../core/storage" } -protocol = { path = "../../protocol", package = "axon-protocol" } +protocol = { path = "../../protocol", package = "axon-protocol", features = [] } [target.'cfg(all(not(target_env = "msvc"), not(target_os="macos")))'.dependencies] jemalloc-ctl = { version = "0.5", package = "tikv-jemalloc-ctl", optional = true }