Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
parity
Mirrored projects
ink
Commits
e0ece29e
Unverified
Commit
e0ece29e
authored
Oct 26, 2020
by
Michael Müller
Browse files
Add feature ink-fuzz-tests to crates which are missing it
parent
b2d5c855
Changes
10
Show whitespace changes
Inline
Side-by-side
crates/allocator/Cargo.toml
View file @
e0ece29e
...
...
@@ -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"]
crates/env/Cargo.toml
View file @
e0ece29e
...
...
@@ -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"]
crates/lang/Cargo.toml
View file @
e0ece29e
...
...
@@ -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"]
crates/lang/codegen/Cargo.toml
View file @
e0ece29e
...
...
@@ -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"]
crates/lang/ir/Cargo.toml
View file @
e0ece29e
...
...
@@ -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"]
crates/lang/macro/Cargo.toml
View file @
e0ece29e
...
...
@@ -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"]
crates/metadata/Cargo.toml
View file @
e0ece29e
...
...
@@ -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"]
crates/prelude/Cargo.toml
View file @
e0ece29e
...
...
@@ -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"]
crates/primitives/Cargo.toml
View file @
e0ece29e
...
...
@@ -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"
...
...
crates/storage/derive/Cargo.toml
View file @
e0ece29e
...
...
@@ -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
=
[]
Michael Müller
@cmichi
mentioned in commit
540daebb
·
Oct 27, 2020
mentioned in commit
540daebb
mentioned in commit 540daebbe06190fed88cee36ab3a52b15a558fc4
Toggle commit list
Denis_P
🏑
@TriplEight
mentioned in commit
24235f09
·
Oct 27, 2020
mentioned in commit
24235f09
mentioned in commit 24235f09f0296c31c796ac44a351daa4f7e86174
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment