Skip to content

Commit

Permalink
default_features -> default-features
Browse files Browse the repository at this point in the history
  • Loading branch information
enola-dkfz committed Nov 19, 2024
1 parent d60a62e commit b5e8ae2
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 @@ -9,22 +9,22 @@ license = "Apache-2.0"
[dependencies]
axum = "0.7"
base64 = "0.22.1"
reqwest = { version = "0.12", default_features = false, features = ["json", "default-tls", "stream"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "default-tls", "stream"] }
serde = { version = "1.0.152", features = ["serde_derive"] }
serde_json = "1.0.96"
thiserror = "2.0.3"
rand = { default-features = false, version = "0.8.5" }
chrono = "0.4.31"
tokio = { version = "1.25.0", default_features = false, features = ["signal", "rt-multi-thread", "macros"] }
tokio = { version = "1.25.0", default-features = false, features = ["signal", "rt-multi-thread", "macros"] }
beam-lib = { git = "https://github.com/samply/beam", branch = "develop", features = ["http-util"] }
tower-http = { version = "0.6", features = ["cors"] }
async-sse = "5.1.0"
anyhow = "1"
futures-util = { version = "0.3", features = ["io"] }

# Logging
tracing = { version = "0.1.37", default_features = false }
tracing-subscriber = { version = "0.3.11", default_features = false, features = ["env-filter", "fmt"] }
tracing = { version = "0.1.37", default-features = false }
tracing-subscriber = { version = "0.3.11", default-features = false, features = ["env-filter", "fmt"] }

# Global variables
once_cell = "1.18"
Expand Down

0 comments on commit b5e8ae2

Please sign in to comment.