diff --git a/Cargo.lock b/Cargo.lock index 63babcb..f74c551 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -112,6 +112,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.91" @@ -185,7 +221,7 @@ name = "base" version = "0.0.0" dependencies = [ "anyhow", - "async-nats", + "async-nats 0.50.0", "async-trait", "code0-flow", "env_logger", @@ -286,7 +322,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 46cffc2..9af5ba9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ regex = "1.11.1" tokio = { version = "1.44.1", features = ["rt-multi-thread"] } uuid = { version = "1.16.0", features = ["v4"] } tonic = "0.14.0" -async-nats = "0.49.0" +async-nats = "0.50.0" async-trait = "0.1.88" anyhow = "1.0.98" prost = "0.14.0"