diff options
author | rtkay123 <dev@kanjala.com> | 2025-08-17 20:02:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-17 20:02:49 +0200 |
commit | 73d7bab8844bb21c7a9143c30800c2d11d411e42 (patch) | |
tree | 955290bd2bded56b534738d6320216fbeeb708cb /Cargo.lock | |
parent | 725739985d853b07d73fa7fcd6db1f2f1b0000b6 (diff) | |
download | warden-73d7bab8844bb21c7a9143c30800c2d11d411e42.tar.bz2 warden-73d7bab8844bb21c7a9143c30800c2d11d411e42.zip |
feat: typology processor (#8)
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 29 |
1 files changed, 25 insertions, 4 deletions
@@ -3717,10 +3717,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f" [[package]] -name = "typologies" -version = "0.1.0" - -[[package]] name = "unicase" version = "2.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -4129,6 +4125,31 @@ dependencies = [ ] [[package]] +name = "warden-typologies" +version = "0.1.0" +dependencies = [ + "anyhow", + "async-nats", + "clap", + "config", + "futures-util", + "moka", + "opentelemetry", + "opentelemetry-semantic-conventions", + "prost 0.14.1", + "serde", + "serde_json", + "tokio", + "tonic 0.14.1", + "tracing", + "tracing-opentelemetry", + "uuid", + "warden-core", + "warden-middleware", + "warden-stack", +] + +[[package]] name = "wasi" version = "0.11.1+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" |