diff --git a/Cargo.lock b/Cargo.lock index add73c47..a67c3f20 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2343,7 +2343,7 @@ dependencies = [ "serde", "serde_regex", "shuttle-actix-web", - "shuttle-runtime", + "shuttle-runtime 0.28.0", "tokio", "url", "uts2ts", @@ -2473,13 +2473,13 @@ dependencies = [ [[package]] name = "shuttle-actix-web" -version = "0.28.0" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "022820e4ab1af63c244b31a4a3a178689bd6843711110bc94bc9e8d2ab6377b3" +checksum = "416acc05c0cf07e2d474897746a1710c6fd29753d49a5753ac1f46919001c78e" dependencies = [ "actix-web", "num_cpus", - "shuttle-runtime", + "shuttle-runtime 0.29.0", ] [[package]] @@ -2494,6 +2494,18 @@ dependencies = [ "syn 2.0.29", ] +[[package]] +name = "shuttle-codegen" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c3019c84d317636a7a6ec4422e645d1a7a23467a9f7d7888e1f895de22912f0" +dependencies = [ + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.29", +] + [[package]] name = "shuttle-common" version = "0.28.0" @@ -2537,6 +2549,49 @@ dependencies = [ "uuid", ] +[[package]] +name = "shuttle-common" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a7c62201d9cbb6f1e68ddca84133c09c17e07f626454be6f1b3e81b02f66db0" +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.28.0" @@ -2550,7 +2605,27 @@ dependencies = [ "prost", "prost-types", "serde_json", - "shuttle-common", + "shuttle-common 0.28.0", + "tokio", + "tonic", + "tower", + "tracing", +] + +[[package]] +name = "shuttle-proto" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0d8eb484348a330f4b599fa0ca93ae3a35b750400dec66a0b051bc8bf708e44" +dependencies = [ + "anyhow", + "chrono", + "dunce", + "home", + "prost", + "prost-types", + "serde_json", + "shuttle-common 0.29.0", "tokio", "tonic", "tower", @@ -2570,10 +2645,10 @@ dependencies = [ "prost-types", "serde", "serde_json", - "shuttle-codegen", - "shuttle-common", - "shuttle-proto", - "shuttle-service", + "shuttle-codegen 0.28.0", + "shuttle-common 0.28.0", + "shuttle-proto 0.28.0", + "shuttle-service 0.28.0", "strfmt", "thiserror", "tokio", @@ -2583,6 +2658,30 @@ dependencies = [ "tracing-subscriber", ] +[[package]] +name = "shuttle-runtime" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffcb33905113b15b0fa1b8af8abc50aeeaf9b4cf41638ee2a760ed6818f10c2e" +dependencies = [ + "anyhow", + "async-trait", + "chrono", + "prost-types", + "serde", + "serde_json", + "shuttle-codegen 0.29.0", + "shuttle-common 0.29.0", + "shuttle-proto 0.29.0", + "shuttle-service 0.29.0", + "strfmt", + "thiserror", + "tokio", + "tokio-stream", + "tonic", + "tower", +] + [[package]] name = "shuttle-service" version = "0.28.0" @@ -2592,7 +2691,21 @@ dependencies = [ "anyhow", "async-trait", "serde", - "shuttle-common", + "shuttle-common 0.28.0", + "strfmt", + "thiserror", +] + +[[package]] +name = "shuttle-service" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7574c6e64e89e8f3a44445db51fa28f439a42380bab58ea2b4a3d1fd822a3e7" +dependencies = [ + "anyhow", + "async-trait", + "serde", + "shuttle-common 0.29.0", "strfmt", "thiserror", ] diff --git a/Cargo.toml b/Cargo.toml index 829d593a..136af860 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,7 +43,7 @@ humantime-serde = "1.1.1" glob = "0.3.1" ring = "0.17.0" hotwatch = "0.5.0" -shuttle-actix-web = { version = "0.28.0", optional = true } +shuttle-actix-web = { version = "0.29.0", optional = true } shuttle-runtime = { version = "0.28.0", optional = true } tokio = { version = "1.33.0", optional = true } uts2ts = "0.4.1"