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 /crates/typologies/Cargo.toml | |
parent | 725739985d853b07d73fa7fcd6db1f2f1b0000b6 (diff) | |
download | warden-73d7bab8844bb21c7a9143c30800c2d11d411e42.tar.bz2 warden-73d7bab8844bb21c7a9143c30800c2d11d411e42.zip |
feat: typology processor (#8)
Diffstat (limited to 'crates/typologies/Cargo.toml')
-rw-r--r-- | crates/typologies/Cargo.toml | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/crates/typologies/Cargo.toml b/crates/typologies/Cargo.toml index 207e671..38a8cb4 100644 --- a/crates/typologies/Cargo.toml +++ b/crates/typologies/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "typologies" +name = "warden-typologies" version = "0.1.0" edition = "2024" license.workspace = true @@ -8,3 +8,36 @@ documentation.workspace = true description.workspace = true [dependencies] +anyhow.workspace = true +async-nats.workspace = true +clap = { workspace = true, features = ["derive"] } +config = { workspace = true, features = ["toml"] } +futures-util = { workspace = true, default-features = false } +moka = { workspace = true, features = ["future"] } +opentelemetry.workspace = true +opentelemetry-semantic-conventions.workspace = true +prost.workspace = true +serde = { workspace = true, features = ["derive"] } +serde_json.workspace = true +tokio = { workspace = true, features = [ + "macros", + "rt-multi-thread", + "signal", +] } +tonic.workspace = true +tracing.workspace = true +tracing-opentelemetry.workspace = true +uuid = { workspace = true, features = ["v7"] } +warden-core = { workspace = true, features = [ + "message", + "configuration", + "serde-time", +] } +warden-middleware.workspace = true +warden-stack = { workspace = true, features = [ + "cache", + "nats-jetstream", + "opentelemetry", + "opentelemetry-tonic", + "tracing-loki", +] } |