assemble-core 0.2.0

The core crate of the assemble-rs package
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Contains "unstable" elements of assemble freight.
//!
//! All unstable features are always available in the core crate, and can be made available for downstream
//! crates by enabling specific feature flags.

pub mod text_factory;

/// The enabled features, configured via feature flags. All feature flags must also rely on
/// the `unstable` feature being enabled.
#[cfg(feature = "unstable")]
pub mod enabled {

    /// Unstable features to add to the `assemble-core` [`prelude`](crate::prelude)
    pub mod prelude {}

    #[feature(feature = "text_factory")]
    pub use super::text_factory;
}