Skip to content

Commit

Permalink
Relax version requirements
Browse files Browse the repository at this point in the history
This includes working with both itertools 0.11 and the recently released
itertools 0.12. Strictly these are SemVer incompatible, but the changes
don't affect those parts of itertools that are used by petnames.
  • Loading branch information
allenap committed Dec 2, 2023
1 parent 4d75281 commit c3e1cd0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Expand Up @@ -31,16 +31,16 @@ default-rng = ["rand/std", "rand/std_rng"]
default-words = []

[dev-dependencies]
anyhow = "^1.0.75"
tempdir = "^0.3.7"
anyhow = "1"
tempdir = "0.3"

[build-dependencies]
anyhow = "^1.0.75"
anyhow = "1"

[dependencies]
clap = { version = "^4.4.2", features = ["cargo", "derive"], optional = true }
itertools = { version = "^0.11.0", default-features = false }
rand = { version = "^0.8.5", default-features = false }
clap = { version = "4.4", features = ["cargo", "derive"], optional = true }
itertools = { version = ">=0.11", default-features = false }
rand = { version = "0.8", default-features = false }

[package.metadata.docs.rs]
# Limit docs.rs builds to a single tier one target, because they're identical on
Expand Down

0 comments on commit c3e1cd0

Please sign in to comment.