Skip to main content

rakka_config/
lib.rs

1//! # rakka-config
2//!
3//! Akka.NET-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//! akka.net source: `src/core/Akka/Configuration/`.
8
9mod error;
10pub mod hocon;
11mod path;
12mod reference;
13mod value;
14
15pub use error::ConfigError;
16pub use hocon::HoconError;
17pub use path::ConfigPath;
18pub use reference::reference_config;
19pub use value::{Config, ConfigValue};