anathema_value_resolver/lib.rs
1pub use crate::attributes::{AttributeStorage, Attributes, ValueKey};
2pub use crate::context::ResolverCtx;
3pub use crate::scope::Scope;
4pub use crate::value::{Collection, Value, ValueKind, resolve, resolve_collection};
5
6mod attributes;
7mod context;
8mod expression;
9mod immediate;
10mod scope;
11mod value;
12
13#[cfg(test)]
14pub(crate) mod testing;