concision_ext/lib.rs
1/*
2 Appellation: concision-models <library>
3 Contrib: @FL03
4*/
5//! This crate extends the `concision` framework to provide a set of models and layers
6#![cfg_attr(not(feature = "std"), no_std)]
7
8// #[cfg(feature = "alloc")]
9// extern crate alloc;
10
11extern crate concision as cnc;
12
13#[cfg(feature = "simple")]
14pub mod simple;
15#[cfg(feature = "transformer")]
16pub use concision_transformer as transformer;
17
18pub mod prelude {
19 #[cfg(feature = "simple")]
20 pub use crate::simple::SimpleModel;
21 #[cfg(feature = "transformer")]
22 pub use concision_transformer::TransformerModel;
23}