Skip to content

Commit

Permalink
Merge pull request #171 from kpcyrd/2024-edition
Browse files Browse the repository at this point in the history
Add support for Rust 2024 edition
  • Loading branch information
Shnatsel authored Nov 11, 2024
2 parents dc78465 + a0160d0 commit e89342f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion auditable-serde/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ schema = ["schemars"]
serde = { version = "1", features = ["serde_derive"] }
serde_json = "1.0.57"
semver = { version = "1.0", features = ["serde"] }
cargo_metadata = { version = "0.15", optional = true }
cargo_metadata = { version = "0.18", optional = true }
topological-sort = "0.2.2"
schemars = {version = "0.8.10", optional = true }

Expand Down
4 changes: 2 additions & 2 deletions cargo-auditable/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ object = {version = "0.30", default-features = false, features = ["write"]}
auditable-serde = {version = "0.7.0", path = "../auditable-serde", features = ["from_metadata"]}
miniz_oxide = {version = "0.6.0"}
serde_json = "1.0.57"
cargo_metadata = "0.15"
cargo_metadata = "0.18"
pico-args = "0.5"
serde = "1.0.147"
wasm-gen = "0.1.4"

[dev-dependencies]
cargo_metadata = "0.15"
cargo_metadata = "0.18"
auditable-info = {version = "0.8.0", path = "../auditable-info", features = ["wasm"]}
which = "4.3.0"

0 comments on commit e89342f

Please sign in to comment.