feat: move client decode library into a feature

breaking change: Client features must be be built specificially and are not included by default.
This commit is contained in:
Henry Schimke
2023-12-31 13:30:35 -06:00
parent 84a54d420d
commit 1a40a64097
2 changed files with 7 additions and 1 deletions

View File

@@ -2,12 +2,15 @@
#![allow(non_camel_case_types)]
pub mod aztec;
pub mod client;
pub mod common;
mod exceptions;
pub mod maxicode;
pub mod qrcode;
#[cfg(feature = "client_support")]
pub mod client;
use std::{collections::HashMap, rc::Rc};
pub use exceptions::Exceptions;