Skip to content

Commit

Permalink
Only lock deps major version (#13)
Browse files Browse the repository at this point in the history
Only require the major version of all dependencies. This should allow
downstream more flexibility to select the correct minor/patch.

Signed-off-by: Oliver Tale-Yazdi <[email protected]>
  • Loading branch information
ggwpez authored Dec 22, 2023
1 parent 0e22e8d commit 59bb4e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions proc-macro-warning/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ repository = "https://github.com/ggwpez/proc-macro-warning"
readme.workspace = true

[dependencies]
proc-macro2 = { version = "1.0.71", default-features = false }
quote = { version = "1.0.33", default-features = false }
syn = { version = "2.0.42", default-features = false }
proc-macro2 = { version = "1.0", default-features = false }
quote = { version = "1.0", default-features = false }
syn = { version = "2.0", default-features = false }

[dev-dependencies]
derive = { path = "../ui-tests/derive" }
Expand Down

0 comments on commit 59bb4e2

Please sign in to comment.