Skip to content

Commit

Permalink
Cargo.toml: don't use tilde requirements
Browse files Browse the repository at this point in the history
This makes the crate compatible with any version that's semver-compatible.
Otherwise, users can't depend on other minor versions.
  • Loading branch information
erikgrinaker committed May 1, 2024
1 parent 993e40b commit 1ba0e34
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ repository = "https://github.com/erikgrinaker/goldenscript"
edition = "2021"

[dependencies]
goldenfile = "~1.7.1"
nom = "~7.1.3"
goldenfile = "1.7.1"
nom = "7.1.3"

[dev-dependencies]
chrono = "~0.4.38"
dateparser = "~0.2.1"
test_each_file = "~0.3.2"
chrono = "0.4.38"
dateparser = "0.2.1"
test_each_file = "0.3.2"

0 comments on commit 1ba0e34

Please sign in to comment.