less specific versioning

This commit is contained in:
Adam 2024-10-09 01:53:23 -04:00
parent 03c33d5789
commit 3fc4237fcc

View file

@ -7,15 +7,15 @@ authors = ["Adam Doyle <adam@doordesk.net>"]
[dependencies] [dependencies]
lib = { workspace = true } lib = { workspace = true }
anyhow = "1.0" anyhow = "1"
axum = { version = "0.7", features = ["ws"] } axum = { version = "0", features = ["ws"] }
futures = "0.3" futures = "0"
rand = "0.8" rand = "0"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1", features = ["derive"] }
serde_json = "1.0" serde_json = "1"
tokio = { version = "1", features = ["full"] } tokio = { version = "1", features = ["full"] }
tower = { version = "0.5", features = ["util"] } tower = { version = "0", features = ["util"] }
tower-http = { version = "0.5", features = ["fs", "trace", "compression-full"] } tower-http = { version = "0", features = ["fs", "trace", "compression-full"] }
tracing = "0.1" tracing = "0"
tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing-subscriber = { version = "0", features = ["env-filter"] }
uuid = { version = "1", features = ["v7", "serde", "fast-rng"] } uuid = { version = "1", features = ["v7", "serde", "fast-rng"] }