diff options
author | rtkay123 <dev@kanjala.com> | 2025-08-10 12:09:22 +0200 |
---|---|---|
committer | rtkay123 <dev@kanjala.com> | 2025-08-10 12:09:27 +0200 |
commit | af407fe5c3e1d5b8b315db029805fa7290c83fae (patch) | |
tree | c6cde42d7e05453b0be99fa5c3f181fc843ab76a /lib/warden-core/Cargo.toml | |
parent | d50185df5a5870498b6c7e6b51e0368d051743ca (diff) | |
download | warden-af407fe5c3e1d5b8b315db029805fa7290c83fae.tar.bz2 warden-af407fe5c3e1d5b8b315db029805fa7290c83fae.zip |
feat(pseudonyms): proto definitions
Diffstat (limited to 'lib/warden-core/Cargo.toml')
-rw-r--r-- | lib/warden-core/Cargo.toml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/warden-core/Cargo.toml b/lib/warden-core/Cargo.toml index bdf0af0..759e018 100644 --- a/lib/warden-core/Cargo.toml +++ b/lib/warden-core/Cargo.toml @@ -17,12 +17,14 @@ serde = { workspace = true, optional = true } serde_json = { workspace = true, optional = true } time = { workspace = true, optional = true } tonic = { workspace = true, optional = true } +tonic-prost = { version = "0.14.1", optional = true } tonic-types = { version = "0.14.0", optional = true } utoipa = { workspace = true, optional = true } [features] default = [] -iso20022 = ["dep:prost", "dep:tonic", "dep:tonic-types"] +message = ["dep:prost", "dep:tonic", "dep:tonic-types", "dep:tonic-prost"] +pseudonyms = ["dep:prost", "dep:tonic", "dep:tonic-types", "dep:tonic-prost"] serde = ["dep:serde", "serde/derive", "dep:serde_json"] serde-time = [ "time", |