Skip to content

Commit

Permalink
Loosen dependency requirement on proc-macro-crate and cargo_toml (#134)
Browse files Browse the repository at this point in the history
This allows for reducing the number of these crates in binaries' transitive deps.

We aren't just bumping these deps because that would require increasing MSRV.
  • Loading branch information
oeb25 committed Oct 27, 2023
1 parent 7b3797f commit 0407569
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion metadata_checks/Cargo.toml
Expand Up @@ -5,6 +5,6 @@ edition = "2021"
publish = false

[dev-dependencies]
cargo_toml = "0.13.3"
cargo_toml = ">= 0.13.3, <= 0.16"
serde = "1"
serde_yaml = "0.9"
2 changes: 1 addition & 1 deletion num_enum_derive/Cargo.toml
Expand Up @@ -33,7 +33,7 @@ features = ["external_doc"]

[dependencies]
proc-macro2 = "1.0.60"
proc-macro-crate = { version = "1", optional = true }
proc-macro-crate = { version = ">= 1, <= 2", optional = true }
quote = "1"
syn = { version = "2", features = ["parsing"] }

Expand Down

0 comments on commit 0407569

Please sign in to comment.