diff --git a/Cargo.lock b/Cargo.lock index 599d138d..ced34374 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2328,7 +2328,7 @@ dependencies = [ "serde", "serde_regex", "shuttle-actix-web", - "shuttle-runtime", + "shuttle-runtime 0.29.0", "tokio", "tracing", "tracing-subscriber", @@ -2460,13 +2460,13 @@ dependencies = [ [[package]] name = "shuttle-actix-web" -version = "0.29.0" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "416acc05c0cf07e2d474897746a1710c6fd29753d49a5753ac1f46919001c78e" +checksum = "a15c0e71540af3f28f1d92f78ff23c28dab97a32ee5e2b1bfcbfceecc6feec06" dependencies = [ "actix-web", "num_cpus", - "shuttle-runtime", + "shuttle-runtime 0.30.0", ] [[package]] @@ -2481,6 +2481,18 @@ dependencies = [ "syn 2.0.29", ] +[[package]] +name = "shuttle-codegen" +version = "0.30.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "900f6955239d65f7469cfba05911493cae2d386f60aa97ebcd1fac4061e984a0" +dependencies = [ + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.29", +] + [[package]] name = "shuttle-common" version = "0.29.0" @@ -2524,6 +2536,49 @@ dependencies = [ "uuid", ] +[[package]] +name = "shuttle-common" +version = "0.30.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8721d9ccce7d29dee4aea5e6e5ba71e45db18011d2b4875c5991e148f16da32" +dependencies = [ + "anyhow", + "async-trait", + "axum", + "bytes", + "chrono", + "comfy-table", + "crossterm 0.27.0", + "headers", + "http", + "http-body", + "http-serde", + "hyper", + "jsonwebtoken", + "once_cell", + "opentelemetry", + "opentelemetry-http", + "opentelemetry-otlp", + "pin-project", + "reqwest", + "rmp-serde", + "rustrict", + "semver", + "serde", + "serde_json", + "strum", + "thiserror", + "tokio", + "tonic", + "tower", + "tower-http", + "tracing", + "tracing-opentelemetry", + "tracing-subscriber", + "ttl_cache", + "uuid", +] + [[package]] name = "shuttle-proto" version = "0.29.0" @@ -2537,7 +2592,27 @@ dependencies = [ "prost", "prost-types", "serde_json", - "shuttle-common", + "shuttle-common 0.29.0", + "tokio", + "tonic", + "tower", + "tracing", +] + +[[package]] +name = "shuttle-proto" +version = "0.30.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b498eec3aede9616eabcc48c999d134994839e94a9078ef356279563124a988" +dependencies = [ + "anyhow", + "chrono", + "dunce", + "home", + "prost", + "prost-types", + "serde_json", + "shuttle-common 0.30.0", "tokio", "tonic", "tower", @@ -2557,10 +2632,10 @@ dependencies = [ "prost-types", "serde", "serde_json", - "shuttle-codegen", - "shuttle-common", - "shuttle-proto", - "shuttle-service", + "shuttle-codegen 0.29.0", + "shuttle-common 0.29.0", + "shuttle-proto 0.29.0", + "shuttle-service 0.29.0", "strfmt", "thiserror", "tokio", @@ -2570,6 +2645,30 @@ dependencies = [ "tracing-subscriber", ] +[[package]] +name = "shuttle-runtime" +version = "0.30.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8811b087d2be9f3524289989f45e92940d0f1640ed960da360daff7356c12b04" +dependencies = [ + "anyhow", + "async-trait", + "chrono", + "prost-types", + "serde", + "serde_json", + "shuttle-codegen 0.30.0", + "shuttle-common 0.30.0", + "shuttle-proto 0.30.0", + "shuttle-service 0.30.0", + "strfmt", + "thiserror", + "tokio", + "tokio-stream", + "tonic", + "tower", +] + [[package]] name = "shuttle-service" version = "0.29.0" @@ -2579,7 +2678,21 @@ dependencies = [ "anyhow", "async-trait", "serde", - "shuttle-common", + "shuttle-common 0.29.0", + "strfmt", + "thiserror", +] + +[[package]] +name = "shuttle-service" +version = "0.30.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b09ac1598e2a7c146df66f524aaabfa04985e4b3112ed8b07e5e77547331d41" +dependencies = [ + "anyhow", + "async-trait", + "serde", + "shuttle-common 0.30.0", "strfmt", "thiserror", ] diff --git a/Cargo.toml b/Cargo.toml index 0adbf705..1a5f3f9c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,7 +41,7 @@ humantime-serde = "1.1.1" glob = "0.3.1" ring = "0.17.5" hotwatch = "0.5.0" -shuttle-actix-web = { version = "0.29.0", optional = true } +shuttle-actix-web = { version = "0.30.0", optional = true } shuttle-runtime = { version = "0.29.0", optional = true } tokio = { version = "1.33.0", optional = true } tracing = "0.1.40"