diff options
author | Alex Auvolat <alex@adnab.me> | 2021-03-10 22:32:14 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-03-10 22:32:14 +0100 |
commit | c05600d749b2ef56d40bed7e41a6a94e02046fb6 (patch) | |
tree | 84b5cde646f884b8390655d5ba09d2646e9d4ef2 /src | |
parent | a2e2f5e96bd8c77bb309f881691ebec090993634 (diff) | |
download | netapp-c05600d749b2ef56d40bed7e41a6a94e02046fb6.tar.gz netapp-c05600d749b2ef56d40bed7e41a6a94e02046fb6.zip |
make basalt optionnal during compilation
Diffstat (limited to 'src')
-rw-r--r-- | src/peering/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/peering/mod.rs b/src/peering/mod.rs index 15b870a..96a4302 100644 --- a/src/peering/mod.rs +++ b/src/peering/mod.rs @@ -1,2 +1,4 @@ pub mod fullmesh; + +#[cfg(feature = "basalt")] pub mod basalt; |