diff options
author | rtkay123 <dev@kanjala.com> | 2025-08-10 18:07:13 +0200 |
---|---|---|
committer | rtkay123 <dev@kanjala.com> | 2025-08-10 18:07:13 +0200 |
commit | a9aef1863ff0fe0422eee403f85644fc76952e80 (patch) | |
tree | a233ca1ca7fb38d06592fa7296382b5e9b478d62 /lib/warden-core/build.rs | |
parent | 8b4f27d2c39d1e1f5f1cc455c58800e806ee98d0 (diff) | |
download | warden-a9aef1863ff0fe0422eee403f85644fc76952e80.tar.bz2 warden-a9aef1863ff0fe0422eee403f85644fc76952e80.zip |
feat(warden): save history
Diffstat (limited to 'lib/warden-core/build.rs')
-rw-r--r-- | lib/warden-core/build.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/warden-core/build.rs b/lib/warden-core/build.rs index 6d5efbb..1f71f35 100644 --- a/lib/warden-core/build.rs +++ b/lib/warden-core/build.rs @@ -13,9 +13,7 @@ impl Entity { #[cfg(feature = "message")] fn iso20022_protos() -> Vec<&'static str> { - vec![ - "proto/warden_message.proto", - ] + vec!["proto/warden_message.proto"] } #[cfg(feature = "pseudonyms")] @@ -45,7 +43,7 @@ impl Entity { fn main() -> Result<(), Box<dyn std::error::Error>> { println!("cargo:rerun-if-changed=../../proto"); -#[cfg(any(feature = "message", feature = "pseudonyms"))] + #[cfg(any(feature = "message", feature = "pseudonyms"))] let mut protos: Vec<&'static str> = vec![]; #[cfg(feature = "message")] |