diff --git a/Cargo.toml b/Cargo.toml index d35e233..22e45d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,10 @@ name = "wolves-oxidised" version = "0.1.0" edition = "2021" +[features] +# this is for anythign in dev and not finalised yet +unstable = [] + [dependencies] # for making teh requests reqwest = { version = "0.12", features = ["json"] } diff --git a/src/lib.rs b/src/lib.rs index 56b49e3..8508657 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -48,6 +48,7 @@ pub struct WolvesUser { pub domain: String, } +#[cfg(feature = "unstable")] /// Information on an individual club/soc #[derive(Deserialize, Serialize, Debug)] pub struct WolvesCNS { @@ -145,6 +146,7 @@ impl Client { self.get_bulk::("get_members", api_key).await } + #[cfg(feature = "unstable")] /// Get information about teh Club/Soc, including committee members /// /// # Examples