Skip to content

Commit f45d419

Browse files
committed
Avoid wildcard dependencies in Cargo.toml
crates.io does not like them
1 parent 689f408 commit f45d419

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ axum-server = { version = "0.4.7", features = ["tls-rustls"] }
3232
clap = { version = "4.2", features = ["derive", "env"] }
3333
expanduser = "1.2.2"
3434
flate2 = "1.0"
35-
http = "*"
35+
http = "0.2"
3636
hyper = { version = "0.14", features = ["full"] }
3737
lazy_static = "1.4"
3838
maligned = "0.2.1"
@@ -42,7 +42,7 @@ ndarray-stats = "0.5"
4242
num-traits = "0.2.16"
4343
prometheus = { version = "0.13", features = ["process"] }
4444
serde = { version = "1.0", features = ["derive"] }
45-
serde_json = "*"
45+
serde_json = "1.0"
4646
strum_macros = "0.24"
4747
thiserror = "1.0"
4848
tokio = { version = "1.28", features = ["full"] }

0 commit comments

Comments
 (0)