diff --git a/Cargo.lock b/Cargo.lock index 483daf9..f1b23a2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -316,7 +316,7 @@ dependencies = [ "protocol", "serde_json", "shuttle-axum", - "shuttle-runtime", + "shuttle-runtime 0.36.0", "tokio", "tower-http 0.5.1", "tracing", @@ -1717,7 +1717,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b8a2198e6493677654078c3a3930a364ed0fc21b456c91e4d815858c269e3a1" dependencies = [ "axum 0.7.4", - "shuttle-runtime", + "shuttle-runtime 0.35.2", ] [[package]] @@ -1732,6 +1732,18 @@ dependencies = [ "syn 2.0.48", ] +[[package]] +name = "shuttle-codegen" +version = "0.36.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "032ec76ecb7e3698d7a9e836e3649a88faa13e53f4d13eaa314030761f4ecac9" +dependencies = [ + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.48", +] + [[package]] name = "shuttle-common" version = "0.35.2" @@ -1776,6 +1788,50 @@ dependencies = [ "zeroize", ] +[[package]] +name = "shuttle-common" +version = "0.36.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8e3ddec998dd953743ac0e47de7ae6d65fcb1ffc45e68a4ceecd2558f8cad1b" +dependencies = [ + "anyhow", + "async-trait", + "axum 0.6.20", + "bytes", + "chrono", + "comfy-table", + "crossterm 0.27.0", + "headers", + "http 0.2.9", + "http-body 0.4.5", + "hyper 0.14.27", + "jsonwebtoken", + "opentelemetry", + "opentelemetry-appender-tracing", + "opentelemetry-http", + "opentelemetry-otlp", + "opentelemetry_sdk", + "pin-project", + "rustrict", + "semver", + "serde", + "serde_json", + "strum 0.25.0", + "thiserror", + "tokio", + "tonic 0.10.2", + "tower", + "tower-http 0.4.4", + "tracing", + "tracing-core", + "tracing-opentelemetry", + "tracing-subscriber", + "ttl_cache", + "url", + "uuid", + "zeroize", +] + [[package]] name = "shuttle-proto" version = "0.35.2" @@ -1785,7 +1841,20 @@ dependencies = [ "futures-core", "prost 0.12.3", "prost-types", - "shuttle-common", + "shuttle-common 0.35.2", + "tonic 0.10.2", +] + +[[package]] +name = "shuttle-proto" +version = "0.36.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ff4e554df686fb01ce42636bf768ba902800934ba4e22f5a5d96082f608d325" +dependencies = [ + "futures-core", + "prost 0.12.3", + "prost-types", + "shuttle-common 0.36.0", "tonic 0.10.2", ] @@ -1801,10 +1870,34 @@ dependencies = [ "prost-types", "serde", "serde_json", - "shuttle-codegen", - "shuttle-common", - "shuttle-proto", - "shuttle-service", + "shuttle-codegen 0.35.2", + "shuttle-common 0.35.2", + "shuttle-proto 0.35.2", + "shuttle-service 0.35.2", + "strfmt", + "thiserror", + "tokio", + "tokio-stream", + "tonic 0.10.2", + "tower", +] + +[[package]] +name = "shuttle-runtime" +version = "0.36.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd4e48b0112dc1ba7ae056197810808a27948a7352340506f355da7e4bdc6cb4" +dependencies = [ + "anyhow", + "async-trait", + "chrono", + "prost-types", + "serde", + "serde_json", + "shuttle-codegen 0.36.0", + "shuttle-common 0.36.0", + "shuttle-proto 0.36.0", + "shuttle-service 0.36.0", "strfmt", "thiserror", "tokio", @@ -1822,7 +1915,21 @@ dependencies = [ "anyhow", "async-trait", "serde", - "shuttle-common", + "shuttle-common 0.35.2", + "strfmt", + "thiserror", +] + +[[package]] +name = "shuttle-service" +version = "0.36.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "809db2a4b8511b07f363942737459bb4ec4f859d9adac7759c52677beabe9af4" +dependencies = [ + "anyhow", + "async-trait", + "serde", + "shuttle-common 0.36.0", "strfmt", "thiserror", ] diff --git a/coordinator/Cargo.toml b/coordinator/Cargo.toml index d1bf447..1637b4a 100644 --- a/coordinator/Cargo.toml +++ b/coordinator/Cargo.toml @@ -45,6 +45,6 @@ optional = true # Feature `shuttle` depend on it. [dependencies.shuttle-runtime] -version = "0.35" +version = "0.36" default-features = false optional = true