Skip to content
Snippets Groups Projects
lib.rs 321 B
Newer Older
#![allow(unused_labels)]

mod env_file;
#[cfg(feature = "fs")]
mod filesystem;
mod parser;

pub use env_file::{EnvironmentFile, EnvironmentFileError, ApplyEnvironmentFile, ApplyOptions};
pub use parser::{FileLine, ValuePart};

#[cfg(feature = "fs")]
pub use filesystem::{dotenv, dotenv_from, dotenv_suffix, dotenv_opts};