Skip to content

Commit

Permalink
Introduce ink-debug feature
Browse files Browse the repository at this point in the history
  • Loading branch information
cmichi committed Jun 17, 2021
1 parent 3891d79 commit e61673a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions examples/contract-transfer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2018"
[dependencies]
ink_primitives = { version = "3.0.0-rc3", path = "../../crates/primitives", default-features = false }
ink_metadata = { version = "3.0.0-rc3", path = "../../crates/metadata", default-features = false, features = ["derive"], optional = true }
ink_env = { version = "3.0.0-rc3", path = "../../crates/env", default-features = false, features = [ "ink-debug" ] }
ink_env = { version = "3.0.0-rc3", path = "../../crates/env", default-features = false }
ink_storage = { version = "3.0.0-rc3", path = "../../crates/storage", default-features = false }
ink_lang = { version = "3.0.0-rc3", path = "../../crates/lang", default-features = false }
ink_prelude = { version = "3.0.0-rc3", path = "../../crates/prelude", default-features = false }
Expand All @@ -21,7 +21,7 @@ path = "lib.rs"
crate-type = ["cdylib"]

[features]
default = ["std"]
default = ["std", "ink-debug"]
std = [
"ink_primitives/std",
"ink_metadata",
Expand All @@ -35,3 +35,4 @@ std = [
]
ink-as-dependency = []
ink-experimental-engine = ["ink_env/ink-experimental-engine"]
ink-debug = ["ink_env/ink-debug"]

0 comments on commit e61673a

Please sign in to comment.