diff --git a/Cargo.toml b/Cargo.toml index 8f7a2836af781..36fc68ef63a39 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -171,8 +171,8 @@ reth-transaction-pool = { path = "crates/transaction-pool" } reth-trie = { path = "crates/trie" } # revm -revm = { git = "https://github.com/telosnetwork/telos-revm", branch = "telos-main", features = ["std", "secp256k1", "telos"], default-features = false } -revm-primitives = { git = "https://github.com/telosnetwork/telos-revm", branch = "telos-main", features = ["std", "telos"], default-features = false } +revm = { git = "https://github.com/telosnetwork/telos-revm", branch = "telos-main", features = ["std", "secp256k1"], default-features = false } +revm-primitives = { git = "https://github.com/telosnetwork/telos-revm", branch = "telos-main", features = ["std"], default-features = false } revm-inspectors = { git = "https://github.com/telosnetwork/telos-evm-inspectors", branch = "telos-main" } # eth diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index b4259afb52a53..e857e71764db7 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -111,7 +111,9 @@ optimism = [ "reth-ethereum-forks/optimism", "revm/optimism", ] -telos = [] +telos = [ + "revm-primitives/telos", +] test-utils = ["dep:plain_hasher", "dep:hash-db", "dep:ethers-core"] [[bench]]