Skip to content

Commit

Permalink
fix runtime-param-estimator features pollute test
Browse files Browse the repository at this point in the history
  • Loading branch information
ailisp committed Aug 17, 2020
1 parent 8b46df6 commit 3de84c6
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions runtime/runtime-params-estimator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,13 @@ num-rational = "0.2.4"

near-runtime-fees = { path = "../../runtime/near-runtime-fees" }
near-crypto = { path = "../../core/crypto" }
near-vm-logic = {path = "../../runtime/near-vm-logic" , features = ["costs_counting"]}
near-vm-runner = {path = "../../runtime/near-vm-runner" , features = ["costs_counting", "no_cache"]}
node-runtime = { path = "../../runtime/runtime" , features = ["costs_counting", "no_cache"]}
near-store = { path = "../../core/store", features = ["no_cache", "single_thread_rocksdb"]}
near-vm-logic = {path = "../../runtime/near-vm-logic"}
near-vm-runner = {path = "../../runtime/near-vm-runner"}
node-runtime = { path = "../../runtime/runtime"}
near-store = { path = "../../core/store"}
near-primitives = { path = "../../core/primitives" }
neard = { path = "../../neard" }
rocksdb = { git = "https://github.com/nearprotocol/rust-rocksdb", branch="disable-thread" }

[features]
default = ["near-vm-logic/costs_counting", "near-store/single_thread_rocksdb", "near-store/no_cache", "near-vm-runner/costs_counting", "near-vm-runner/no_cache", "node-runtime/costs_counting", "node-runtime/no_cache"]

0 comments on commit 3de84c6

Please sign in to comment.