diff --git a/examples/candle_whisper/Cargo.toml b/examples/candle_whisper/Cargo.toml index 1c7ecf1..e871cfe 100644 --- a/examples/candle_whisper/Cargo.toml +++ b/examples/candle_whisper/Cargo.toml @@ -21,7 +21,7 @@ bindgen_cuda = { version = "0.1.5", optional = true } [dependencies] -clap = { version = "4.5.7", features = ["derive"] } +clap = { version = "4.5.8", features = ["derive"] } serde = { version = "1.0", features = ["derive"] } silent = { path = "../../silent", features = ["multipart"] } symphonia = { version = "0.5.4", features = ["all"] } @@ -38,5 +38,5 @@ candle-transformers = { git = "https://github.com/huggingface/candle" } tokenizers = { version = "0.19.1", features = ["onig"] } rand = "0.8.5" -serde_json = "1.0.117" +serde_json = "1.0.120" byteorder = "1.5.0" diff --git a/examples/configs/Cargo.toml b/examples/configs/Cargo.toml index fcdf4b4..122382a 100644 --- a/examples/configs/Cargo.toml +++ b/examples/configs/Cargo.toml @@ -7,4 +7,4 @@ edition = "2021" [dependencies] silent = { path = "../../silent" } -async-trait = "0.1.80" +async-trait = "0.1.81" diff --git a/examples/custom_handler/Cargo.toml b/examples/custom_handler/Cargo.toml index f7d959d..1e23cf9 100644 --- a/examples/custom_handler/Cargo.toml +++ b/examples/custom_handler/Cargo.toml @@ -7,4 +7,4 @@ edition = "2021" [dependencies] silent = { path = "../../silent" } -async-trait = "0.1.80" +async-trait = "0.1.81" diff --git a/examples/custom_tokio_listener/Cargo.toml b/examples/custom_tokio_listener/Cargo.toml index 58527bc..a4ed39b 100644 --- a/examples/custom_tokio_listener/Cargo.toml +++ b/examples/custom_tokio_listener/Cargo.toml @@ -7,5 +7,5 @@ edition = "2021" [dependencies] silent = { path = "../../silent" } -async-trait = "0.1.80" +async-trait = "0.1.81" tokio = { version = "1.38.0", features = ["full"] } diff --git a/examples/custom_tokio_runtime/Cargo.toml b/examples/custom_tokio_runtime/Cargo.toml index 58c97d0..6b3d06f 100644 --- a/examples/custom_tokio_runtime/Cargo.toml +++ b/examples/custom_tokio_runtime/Cargo.toml @@ -7,5 +7,5 @@ edition = "2021" [dependencies] silent = { path = "../../silent" } -async-trait = "0.1.80" +async-trait = "0.1.81" tokio = { version = "1.38.0", features = ["full"] } diff --git a/examples/exception_handler/Cargo.toml b/examples/exception_handler/Cargo.toml index 41ee57b..b59ea75 100644 --- a/examples/exception_handler/Cargo.toml +++ b/examples/exception_handler/Cargo.toml @@ -7,4 +7,4 @@ edition = "2021" [dependencies] silent = { path = "../../silent" } -serde = { version = "1.0.203", features = ["derive"] } +serde = { version = "1.0.204", features = ["derive"] } diff --git a/examples/form/Cargo.toml b/examples/form/Cargo.toml index 7938132..6e8c97e 100644 --- a/examples/form/Cargo.toml +++ b/examples/form/Cargo.toml @@ -7,4 +7,4 @@ edition = "2021" [dependencies] silent = { path = "../../silent" } -serde = { version = "1.0.203", features = ["derive"] } +serde = { version = "1.0.204", features = ["derive"] } diff --git a/examples/grpc/Cargo.toml b/examples/grpc/Cargo.toml index 8bd9c4b..6cdc549 100644 --- a/examples/grpc/Cargo.toml +++ b/examples/grpc/Cargo.toml @@ -13,11 +13,11 @@ name = "example-grpc-client" path = "src/client.rs" [dependencies] -tonic = { git = "https://github.com/hyperium/tonic" } -prost = "0.12" +tonic = { version = "0.12.0" } +prost = "0.13" tokio = { version = "1.38", features = ["macros", "rt-multi-thread"] } silent = { path = "../../silent", features = ["grpc"] } -async-trait = "0.1.80" +async-trait = "0.1.81" [build-dependencies] -tonic-build = { git = "https://github.com/alexrudy/tonic", branch = "hyper-1.0" } +tonic-build = { version = "0.12.0" } diff --git a/examples/grpc_h2c/Cargo.toml b/examples/grpc_h2c/Cargo.toml index 7cd0f6a..e0ab7f4 100644 --- a/examples/grpc_h2c/Cargo.toml +++ b/examples/grpc_h2c/Cargo.toml @@ -13,11 +13,11 @@ name = "example-grpc-client" path = "src/client.rs" [dependencies] -tonic = { git = "https://github.com/hyperium/tonic" } -prost = "0.12" +tonic = { version = "0.12.0" } +prost = "0.13" tokio = { version = "1.38", features = ["macros", "rt-multi-thread"] } silent = { path = "../../silent", features = ["grpc"] } -async-trait = "0.1.80" +async-trait = "0.1.81" [build-dependencies] -tonic-build = { git = "https://github.com/hyperium/tonic" } +tonic-build = { version = "0.12.0" } diff --git a/examples/grpc_streaming/Cargo.toml b/examples/grpc_streaming/Cargo.toml index 9922214..7827562 100644 --- a/examples/grpc_streaming/Cargo.toml +++ b/examples/grpc_streaming/Cargo.toml @@ -13,13 +13,13 @@ name = "example-grpc-client" path = "src/client.rs" [dependencies] -tonic = { git = "https://github.com/hyperium/tonic" } -prost = "0.12" +tonic = { version = "0.12.0" } +prost = "0.13" tokio = { version = "1.38", features = ["macros", "rt-multi-thread"] } silent = { path = "../../silent", features = ["grpc"] } -async-trait = "0.1.80" +async-trait = "0.1.81" tokio-stream = "0.1.15" h2 = "0.4.5" [build-dependencies] -tonic-build = { git = "https://github.com/hyperium/tonic" } +tonic-build = { version = "0.12.0" } diff --git a/examples/middleware/Cargo.toml b/examples/middleware/Cargo.toml index 84306c8..d5491ff 100644 --- a/examples/middleware/Cargo.toml +++ b/examples/middleware/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -async-trait = "0.1.80" +async-trait = "0.1.81" silent = { path = "../../silent" } diff --git a/examples/multipart-form/Cargo.toml b/examples/multipart-form/Cargo.toml index 9d36b9e..5d86711 100644 --- a/examples/multipart-form/Cargo.toml +++ b/examples/multipart-form/Cargo.toml @@ -7,4 +7,4 @@ edition = "2021" [dependencies] silent = { path = "../../silent", features = ["multipart"] } -serde = { version = "1.0.203", features = ["derive"] } +serde = { version = "1.0.204", features = ["derive"] } diff --git a/examples/sse-chat/Cargo.toml b/examples/sse-chat/Cargo.toml index ac0b336..ef13a5d 100644 --- a/examples/sse-chat/Cargo.toml +++ b/examples/sse-chat/Cargo.toml @@ -11,4 +11,4 @@ once_cell = "1" parking_lot = "0.12" tokio = { version = "1", features = ["macros"] } tokio-stream = { version = "0.1", features = ["net"] } -serde = { version = "1.0.203", features = ["derive"] } +serde = { version = "1.0.204", features = ["derive"] } diff --git a/examples/templates/Cargo.toml b/examples/templates/Cargo.toml index 75350c9..1490b1a 100644 --- a/examples/templates/Cargo.toml +++ b/examples/templates/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde = { version = "1.0.203", features = ["derive"] } +serde = { version = "1.0.204", features = ["derive"] } silent = { path = "../../silent", features = ["template"] } diff --git a/examples/todo/Cargo.toml b/examples/todo/Cargo.toml index cdff445..aecf818 100644 --- a/examples/todo/Cargo.toml +++ b/examples/todo/Cargo.toml @@ -7,6 +7,6 @@ edition = "2021" [dependencies] silent = { path = "../../silent" } -serde = { version = "1.0.203", features = ["derive"] } -uuid = { version = "1.8.0", features = ["serde", "v4"] } -async-trait = "0.1.80" +serde = { version = "1.0.204", features = ["derive"] } +uuid = { version = "1.9.1", features = ["serde", "v4"] } +async-trait = "0.1.81" diff --git a/examples/websocket/Cargo.toml b/examples/websocket/Cargo.toml index 9a6fec1..0f006a6 100644 --- a/examples/websocket/Cargo.toml +++ b/examples/websocket/Cargo.toml @@ -6,10 +6,10 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -async-trait = "0.1.80" +async-trait = "0.1.81" silent = { path = "../../silent", features = ["upgrade"] } tokio = { version = "1.38.0", features = ["full"] } -tokio-tungstenite = "0.23.0" +tokio-tungstenite = "0.23.1" futures-util = "0.3.30" backtrace = "0.3.73" headers = "0.4.0" diff --git a/silent/Cargo.toml b/silent/Cargo.toml index 2a7538e..6b04012 100644 --- a/silent/Cargo.toml +++ b/silent/Cargo.toml @@ -35,23 +35,23 @@ grpc = ["upgrade", "dep:tonic", "dep:pin-project-lite", "dep:pin-project", "dep: [dependencies] # Basic dependencies thiserror = "1.0.61" -hyper = { version = "1.3.1", features = ["full"] } -hyper-util = { version = "0.1.5", features = ["server-auto", "tokio"] } +hyper = { version = "1.4.0", features = ["full"] } +hyper-util = { version = "0.1.6", features = ["server-auto", "tokio"] } tokio = { version = "1.38.0", optional = true } bytes = "1.6.0" http-body-util = "0.1.2" tracing = "0.1.40" tracing-subscriber = { version = "0.3.18", features = ["local-time"] } -async-trait = "0.1.80" -serde = { version = "1.0.203", features = ["derive"] } -serde_json = "1.0.117" -uuid = "1.8.0" -url = "2.5.1" +async-trait = "0.1.81" +serde = { version = "1.0.204", features = ["derive"] } +serde_json = "1.0.120" +uuid = "1.9.1" +url = "2.5.2" serde_urlencoded = "0.7.1" mime = "0.3.17" futures-util = "0.3.30" chrono = { version = "0.4.38", default-features = false, features = ["clock"] } -tokio-tungstenite = { version = "0.23.0", optional = true } +tokio-tungstenite = { version = "0.23.1", optional = true } headers = "0.4.0" tokio-stream = { version = "0.1.15", features = ["net"], optional = true } pin-project = { version = "1.1", optional = true } @@ -80,7 +80,7 @@ async-session = { version = "3.0.0", optional = true } cookie = { version = "0.18.1", features = ["secure", "percent-encode"], optional = true } # Grpc -tonic = { git = "https://github.com/hyperium/tonic", optional = true } +tonic = { version = "0.12.0", optional = true } # Security argon2 = { version = "0.5.3", optional = true } @@ -88,4 +88,4 @@ pbkdf2 = { version = "0.12", features = ["simple"], optional = true } aes-gcm = { version = "0.10.3", optional = true } aes = { version = "0.8", optional = true } rsa = { version = "0.9.6", optional = true } -mime_guess = "2.0.4" +mime_guess = "2.0.5"