diff --git a/Cargo.lock b/Cargo.lock index 4366f3d..b1dd8fd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -308,7 +308,7 @@ dependencies = [ "protocol", "serde_json", "shuttle-axum", - "shuttle-runtime 0.44.0", + "shuttle-runtime", "tokio", "tower-http", "tracing", @@ -1444,24 +1444,12 @@ dependencies = [ [[package]] name = "shuttle-axum" -version = "0.43.0" +version = "0.44.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd98da5e07e2f265cc9a673a8273d32e126242dcb886cd0529bcf59b8c023799" +checksum = "393469f82e5aa60e866035103bae24b54f9ad61caef1fc4e912c47b0170af95c" dependencies = [ "axum 0.7.5", - "shuttle-runtime 0.43.0", -] - -[[package]] -name = "shuttle-codegen" -version = "0.43.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c7c1ea0dfd165fa64dd91bf4c67d1cf22e2f13c5edc4b64656b6015303aa82f" -dependencies = [ - "proc-macro-error", - "proc-macro2", - "quote", - "syn 2.0.48", + "shuttle-runtime", ] [[package]] @@ -1476,33 +1464,6 @@ dependencies = [ "syn 2.0.48", ] -[[package]] -name = "shuttle-common" -version = "0.43.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5367bffb2a9788af483024aaa3a7efc52f901516ef007eb82f739eb7ba609c5f" -dependencies = [ - "anyhow", - "chrono", - "comfy-table", - "crossterm 0.27.0", - "http 0.2.11", - "opentelemetry", - "opentelemetry-http", - "pin-project", - "semver", - "serde", - "serde_json", - "strum 0.26.2", - "tower", - "tracing", - "tracing-opentelemetry", - "tracing-subscriber", - "url", - "uuid", - "zeroize", -] - [[package]] name = "shuttle-common" version = "0.44.0" @@ -1530,19 +1491,6 @@ dependencies = [ "zeroize", ] -[[package]] -name = "shuttle-proto" -version = "0.43.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bdf359a9d0077e1526f02004b34a4ad605bd72855a5ce371a646096297043f2f" -dependencies = [ - "futures-core", - "prost", - "prost-types", - "shuttle-common 0.43.0", - "tonic", -] - [[package]] name = "shuttle-proto" version = "0.44.0" @@ -1552,27 +1500,7 @@ dependencies = [ "futures-core", "prost", "prost-types", - "shuttle-common 0.44.0", - "tonic", -] - -[[package]] -name = "shuttle-runtime" -version = "0.43.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "163ea2e829b0448c8faaf10bba50c66d6280449beafcbdda3da3e69461d974d6" -dependencies = [ - "anyhow", - "async-trait", - "serde", - "serde_json", - "shuttle-codegen 0.43.0", - "shuttle-common 0.43.0", - "shuttle-proto 0.43.0", - "shuttle-service 0.43.0", - "strfmt", - "tokio", - "tokio-stream", + "shuttle-common", "tonic", ] @@ -1586,30 +1514,16 @@ dependencies = [ "async-trait", "serde", "serde_json", - "shuttle-codegen 0.44.0", - "shuttle-common 0.44.0", - "shuttle-proto 0.44.0", - "shuttle-service 0.44.0", + "shuttle-codegen", + "shuttle-common", + "shuttle-proto", + "shuttle-service", "strfmt", "tokio", "tokio-stream", "tonic", ] -[[package]] -name = "shuttle-service" -version = "0.43.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c41b682b8639915d01f6b9b5bff76afc8b67d553b8199d0364bd4675397b06d" -dependencies = [ - "anyhow", - "async-trait", - "serde", - "shuttle-common 0.43.0", - "strfmt", - "thiserror", -] - [[package]] name = "shuttle-service" version = "0.44.0" @@ -1619,7 +1533,7 @@ dependencies = [ "anyhow", "async-trait", "serde", - "shuttle-common 0.44.0", + "shuttle-common", "strfmt", "thiserror", ] diff --git a/coordinator/Cargo.toml b/coordinator/Cargo.toml index ae47a7f..9fb8d31 100644 --- a/coordinator/Cargo.toml +++ b/coordinator/Cargo.toml @@ -39,7 +39,7 @@ optional = true # Feature `shuttle` depend on it. [dependencies.shuttle-axum] -version = "0.43" +version = "0.44" optional = true # Feature `shuttle` depend on it.