From 5f4c49b3072ee298d253319752ea6dad5fb965df Mon Sep 17 00:00:00 2001 From: Raphael Date: Thu, 14 Nov 2024 19:43:47 +0100 Subject: [PATCH] feat: added feature configuration to toml --- build/rust/Cargo.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/build/rust/Cargo.toml b/build/rust/Cargo.toml index 39cf4fc..1d05111 100644 --- a/build/rust/Cargo.toml +++ b/build/rust/Cargo.toml @@ -21,4 +21,10 @@ tonic-build = "0.12.1" [lib] name = "tucana_internal" -path = "src/lib.rs" \ No newline at end of file +path = "src/lib.rs" + +[features] +shared = [] +aquila = ["shared"] +sagittarius = ["shared"] +all = ["aquila", "sagittarius"] \ No newline at end of file