Skip to content

Commit 3da01dd

Browse files
authored
Merge pull request #58 from code0-tech/fix-module-declaration
fix: included correct module
2 parents 3b583aa + 6ade6fb commit 3da01dd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

build/rust/src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#[cfg(feature = "sagittarius")]
2-
pub mod sagittarius {
1+
#[cfg(feature = "shared")]
2+
pub mod shared {
33
include!("generated/shared.rs");
44

55
#[cfg(test)]
@@ -67,7 +67,7 @@ pub mod aquila {
6767
include!("generated/aquila.rs");
6868
}
6969

70-
#[cfg(feature = "shared")]
71-
pub mod shared {
72-
include!("generated/shared.rs");
70+
#[cfg(feature = "sagittarius")]
71+
pub mod sagittarius {
72+
include!("generated/sagittarius.rs");
7373
}

0 commit comments

Comments
 (0)