Unverified Commit e0ece29e authored by Michael Müller's avatar Michael Müller
Browse files

Add feature ink-fuzz-tests to crates which are missing it

parent b2d5c855
......@@ -20,3 +20,7 @@ wee_alloc = { version = "0.4", default-features = false }
[features]
default = ["std"]
std = []
# The feature is not yet utilized in this crate, but we need to add it
# here already anyway, since the CI tries to execute fuzzing on each crate.
ink-fuzz-tests = ["std"]
......@@ -60,3 +60,7 @@ std = [
"blake2",
]
ink-unstable-chain-extensions = []
# The feature is not yet utilized in this crate, but we need to add it
# here already anyway, since the CI tries to execute fuzzing on each crate.
ink-fuzz-tests = ["std"]
......@@ -38,3 +38,7 @@ std = [
"ink_lang_macro/std",
"scale/std",
]
# The feature is not yet utilized in this crate, but we need to add it
# here already anyway, since the CI tries to execute fuzzing on each crate.
ink-fuzz-tests = ["std"]
......@@ -36,3 +36,7 @@ std = [
"either/use_std",
"ir/std"
]
# The feature is not yet utilized in this crate, but we need to add it
# here already anyway, since the CI tries to execute fuzzing on each crate.
ink-fuzz-tests = ["std"]
......@@ -32,3 +32,7 @@ std = [
"itertools/use_std",
"either/use_std",
]
# The feature is not yet utilized in this crate, but we need to add it
# here already anyway, since the CI tries to execute fuzzing on each crate.
ink-fuzz-tests = ["std"]
......@@ -43,3 +43,7 @@ std = [
"ink_lang_ir/std",
"ink_primitives/std",
]
# The feature is not yet utilized in this crate, but we need to add it
# here already anyway, since the CI tries to execute fuzzing on each crate.
ink-fuzz-tests = ["std"]
......@@ -38,3 +38,7 @@ std = [
"scale-info/std",
]
derive = []
# The feature is not yet utilized in this crate, but we need to add it
# here already anyway, since the CI tries to execute fuzzing on each crate.
ink-fuzz-tests = ["std"]
......@@ -20,3 +20,7 @@ cfg-if = "1.0"
[features]
default = ["std"]
std = []
# The feature is not yet utilized in this crate, but we need to add it
# here already anyway, since the CI tries to execute fuzzing on each crate.
ink-fuzz-tests = ["std"]
......@@ -32,6 +32,10 @@ std = [
"scale-info/std",
]
# The feature is not yet utilized in this crate, but we need to add it
# here already anyway, since the CI tries to execute fuzzing on each crate.
ink-fuzz-tests = ["std"]
[[bench]]
name = "bench"
path = "benches/bench.rs"
......
......@@ -27,3 +27,8 @@ synstructure = "0.12.4"
ink_primitives = { version = "3.0.0-rc2", path = "../../primitives" }
ink_metadata = { version = "3.0.0-rc2", path = "../../metadata" }
ink_storage = { version = "3.0.0-rc2", path = ".." }
[features]
# The feature is not yet utilized in this crate, but we need to add it
# here already anyway, since the CI tries to execute fuzzing on each crate.
ink-fuzz-tests = []
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment