Skip to main content

atomr_config/
lib.rs

1//! # atomr-config
2//!
3//! Akka-compatible configuration. Mirrors keys under `akka.*` but is
4//! layered over [`toml`] + `serde`. HOCON has no idiomatic equivalent in Rust;
5//! a small `hocon` feature shim can be added later for migration tooling.
6//!
7
8mod error;
9pub mod hocon;
10mod path;
11mod reference;
12mod value;
13
14pub use error::ConfigError;
15pub use hocon::HoconError;
16pub use path::ConfigPath;
17pub use reference::reference_config;
18pub use value::{Config, ConfigValue};