Skip to content

Commit

Permalink
Bump required dependency versions
Browse files Browse the repository at this point in the history
To minimal versions required to build most features (all other than core
and rustc-dep-of-std) with --all-targets.

Minimal required versions discovered by manual binsearch between
minimum compatible version declared currently and the newest one
available, and rerunning

  cargo check --all \
    --features serde,arbitrary,bytemuck,std,example_generated \
    --all-targets -Z minimal-versions

to verify if it builds.
  • Loading branch information
dextero committed Mar 21, 2024
1 parent 33a1f68 commit 4b535a7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Expand Up @@ -18,18 +18,18 @@ A macro to generate structures which behave like bitflags.
exclude = ["/tests", "/.github"]

[dependencies]
serde = { version = "1.0", optional = true, default-features = false }
serde = { version = "1.0.103", optional = true, default-features = false }
arbitrary = { version = "1.0", optional = true }
bytemuck = { version = "1.0", optional = true }
bytemuck = { version = "1.12", optional = true }
core = { version = "1.0.0", optional = true, package = "rustc-std-workspace-core" }
compiler_builtins = { version = "0.1.2", optional = true }

[dev-dependencies]
trybuild = "1.0"
trybuild = "1.0.18"
rustversion = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
serde_test = "1.0"
serde_test = "1.0.19"
zerocopy = { version = "0.7", features = ["derive"] }
arbitrary = { version = "1.0", features = ["derive"] }
bytemuck = { version = "1.0", features = ["derive"] }
Expand Down

0 comments on commit 4b535a7

Please sign in to comment.