Skip to content

Commit

Permalink
Remove any wildcard dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbobbio committed Nov 20, 2024
1 parent 392e477 commit f916aaa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ std = []
ssl = []

[dependencies]
hashbrown = "*"
openssl = { version = "*", optional = true }
hashbrown = "0.15"
openssl = { version = "0.10", optional = true }
rustls = { version = "^0.20.8", optional = true }
webpki-roots = { version = "^0.26.0", optional = true }
rustls-pemfile = { version = "^2.0.0", optional = true }
native-tls = { version = "*", optional = true }
native-tls = { version = "0.2", optional = true }
url = { version = "2.5.3", default-features = false }

[dev-dependencies]
clap = { version = "*", features = ["derive"] }
clap = { version = "4.5", features = ["derive"] }

0 comments on commit f916aaa

Please sign in to comment.