diff --git a/Cargo.lock b/Cargo.lock index de722b8..de63e07 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -308,7 +308,7 @@ dependencies = [ "protocol", "serde_json", "shuttle-axum", - "shuttle-runtime 0.41.0", + "shuttle-runtime", "tokio", "tower-http", "tracing", @@ -1471,19 +1471,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "92b5da6adec6308876d96ba9acc8be7592eb3621f97c59900a411e18a0d52b76" dependencies = [ "axum 0.7.4", - "shuttle-runtime 0.42.0", -] - -[[package]] -name = "shuttle-codegen" -version = "0.41.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b74556837ddca4b2939a3c0cc770ec4edebebc594ad4d87973e283cc2b06cb9" -dependencies = [ - "proc-macro-error", - "proc-macro2", - "quote", - "syn 2.0.48", + "shuttle-runtime", ] [[package]] @@ -1498,33 +1486,6 @@ dependencies = [ "syn 2.0.48", ] -[[package]] -name = "shuttle-common" -version = "0.41.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73ba3a5682794470b5bf045c4a36fd42c86bbbe1040edc1855cb68272df69e91" -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.42.0" @@ -1552,19 +1513,6 @@ dependencies = [ "zeroize", ] -[[package]] -name = "shuttle-proto" -version = "0.41.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d096928c1c465388dd23fb8ec8842bd41c80105041ce81eb975917778cd3a70" -dependencies = [ - "futures-core", - "prost", - "prost-types", - "shuttle-common 0.41.0", - "tonic", -] - [[package]] name = "shuttle-proto" version = "0.42.0" @@ -1574,30 +1522,7 @@ dependencies = [ "futures-core", "prost", "prost-types", - "shuttle-common 0.42.0", - "tonic", -] - -[[package]] -name = "shuttle-runtime" -version = "0.41.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64474de5309434dfee5762c1858f0dde590b73d5af190cace6fc31d81fa2d481" -dependencies = [ - "anyhow", - "async-trait", - "chrono", - "prost-types", - "serde", - "serde_json", - "shuttle-codegen 0.41.0", - "shuttle-common 0.41.0", - "shuttle-proto 0.41.0", - "shuttle-service 0.41.0", - "strfmt", - "thiserror", - "tokio", - "tokio-stream", + "shuttle-common", "tonic", ] @@ -1613,10 +1538,10 @@ dependencies = [ "prost-types", "serde", "serde_json", - "shuttle-codegen 0.42.0", - "shuttle-common 0.42.0", - "shuttle-proto 0.42.0", - "shuttle-service 0.42.0", + "shuttle-codegen", + "shuttle-common", + "shuttle-proto", + "shuttle-service", "strfmt", "thiserror", "tokio", @@ -1624,20 +1549,6 @@ dependencies = [ "tonic", ] -[[package]] -name = "shuttle-service" -version = "0.41.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2a98f52c7fb8a19f8089cdee5ffd5290617f6d322f06ee292d0a2ed75a9094a" -dependencies = [ - "anyhow", - "async-trait", - "serde", - "shuttle-common 0.41.0", - "strfmt", - "thiserror", -] - [[package]] name = "shuttle-service" version = "0.42.0" @@ -1647,7 +1558,7 @@ dependencies = [ "anyhow", "async-trait", "serde", - "shuttle-common 0.42.0", + "shuttle-common", "strfmt", "thiserror", ] diff --git a/coordinator/Cargo.toml b/coordinator/Cargo.toml index 4567f2b..af60539 100644 --- a/coordinator/Cargo.toml +++ b/coordinator/Cargo.toml @@ -44,6 +44,6 @@ optional = true # Feature `shuttle` depend on it. [dependencies.shuttle-runtime] -version = "0.41" +version = "0.42" default-features = false optional = true