diff --git a/Cargo.toml b/Cargo.toml index e805939..fcf4e7d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,13 +9,13 @@ 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" @@ -23,8 +23,8 @@ 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"