Skip to content

Commit

Permalink
don't specify patch version of dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jcornaz authored Jan 3, 2024
1 parent d992de7 commit be9f66f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@ rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
# Public
miette = { version = "5.10.0", optional = true }
miette = { version = "5.10", optional = true }

# Private
nom = { version = "7.1.3", default-features = false, features = ["std"] }
nom_locate = { version = "4.2.0", default-features = false }
thiserror = "1.0.56"
nom = { version = "7.1", default-features = false, features = ["std"] }
nom_locate = { version = "4.2", default-features = false }
thiserror = "1.0"

[dev-dependencies]
criterion = "0.5.1"
rstest = { version = "0.18.2", default-features = false }
rust_decimal = { version = "1.33.1", default-features = false }
miette = { version = "5.10.0", features = ["fancy"] }
rust_decimal = { version = "1.33", default-features = false }
miette = { version = "5.10", features = ["fancy"] }

[lints.rust]
future_incompatible = "deny"
Expand Down

0 comments on commit be9f66f

Please sign in to comment.