Add rust-version to the workspace manifests
Add `rust-version = 1.56.1` to all crates in the workspace i.e., including `fuzz` but excluding the various test crates.
This commit is contained in:
parent
a41e978855
commit
4d5415f835
|
@ -10,6 +10,7 @@ categories = ["cryptography::cryptocurrencies"]
|
|||
keywords = [ "crypto", "bitcoin" ]
|
||||
readme = "../README.md"
|
||||
edition = "2021"
|
||||
rust-version = "1.56.1"
|
||||
exclude = ["tests", "contrib"]
|
||||
|
||||
[features]
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
[package]
|
||||
name = "bitcoin-fuzz"
|
||||
edition = "2021"
|
||||
rust-version = "1.56.1"
|
||||
version = "0.0.1"
|
||||
authors = ["Generated by fuzz/generate-files.sh"]
|
||||
publish = false
|
||||
|
|
|
@ -12,6 +12,7 @@ cat > "$REPO_DIR/fuzz/Cargo.toml" <<EOF
|
|||
[package]
|
||||
name = "bitcoin-fuzz"
|
||||
edition = "2021"
|
||||
rust-version = "1.56.1"
|
||||
version = "0.0.1"
|
||||
authors = ["Generated by fuzz/generate-files.sh"]
|
||||
publish = false
|
||||
|
|
|
@ -10,6 +10,7 @@ categories = ["algorithms"]
|
|||
keywords = [ "crypto", "bitcoin", "hash", "digest" ]
|
||||
readme = "README.md"
|
||||
edition = "2021"
|
||||
rust-version = "1.56.1"
|
||||
exclude = ["tests", "contrib"]
|
||||
|
||||
[features]
|
||||
|
|
|
@ -10,6 +10,7 @@ categories = ["cryptography::cryptocurrencies"]
|
|||
keywords = ["internal"]
|
||||
readme = "README.md"
|
||||
edition = "2021"
|
||||
rust-version = "1.56.1"
|
||||
exclude = ["tests", "contrib"]
|
||||
|
||||
[features]
|
||||
|
|
Loading…
Reference in New Issue