mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-08 05:28:01 +00:00
954150f3b5
Some traits are already included in the 2021 prelude and so shouldn't be needed to use explicitly: use `convert::TryFrom`, `convert::TryInto`, and `iter::FromIterator` are removed. ( https://doc.rust-lang.org/core/prelude/rust_2021/ ) No breaking changes or change of functionality, so I think no PR doc is needed in this case. (Motivation: Removes some references to `sp-std`)
25 lines
361 B
TOML
25 lines
361 B
TOML
[package]
|
|
name = "sp-core-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
lazy_static = "1.4.0"
|
|
libfuzzer-sys = "0.4"
|
|
regex = "1.10.2"
|
|
|
|
sp-core = { path = ".." }
|
|
|
|
[[bin]]
|
|
name = "fuzz_address_uri"
|
|
path = "fuzz_targets/fuzz_address_uri.rs"
|
|
test = false
|
|
doc = false
|