diff --git a/Cargo.lock b/Cargo.lock index a518885..913e3e3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -21,7 +21,7 @@ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" name = "aquila" version = "0.1.0" dependencies = [ - "async-nats", + "async-nats 0.50.0", "code0-flow", "config", "futures", @@ -82,6 +82,42 @@ dependencies = [ "url", ] +[[package]] +name = "async-nats" +version = "0.50.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d83a251fa1a4c9d0fe6e816b7acd60549e473e08d14f27a1d992c2675abff05f" +dependencies = [ + "base64", + "bytes", + "futures-util", + "memchr", + "nkeys", + "nuid", + "pin-project", + "portable-atomic", + "rand 0.10.1", + "regex", + "ring", + "rustls-native-certs", + "rustls-pki-types", + "rustls-webpki", + "serde", + "serde_json", + "serde_nanos", + "serde_repr", + "thiserror", + "time", + "tokio", + "tokio-rustls", + "tokio-stream", + "tokio-util", + "tokio-websockets", + "tracing", + "tryhard", + "url", +] + [[package]] name = "async-trait" version = "0.1.89" @@ -235,7 +271,7 @@ version = "0.0.41" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a5373ac809b37ed939f2fd9094d20cc8534a87d18ac5551ee7dfc69c6a7596ea" dependencies = [ - "async-nats", + "async-nats 0.49.1", "dotenv", "futures-core", "log", diff --git a/Cargo.toml b/Cargo.toml index 0d308c1..8823dad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ tonic = "0.14.1" tucana = { version = "0.0.76", features = ["all"] } code0-flow = { version = "0.0.41", features = ["flow_config", "flow_health", "flow_telemetry"] } serde_json = "1.0.140" -async-nats = "0.49.0" +async-nats = "0.50.0" tonic-health = "0.14.1" tokio-stream = "0.1.17" uuid = { version = "1.18.0", features = ["v4"] }