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;

Louis's avatar
Louis committed
pub use env_file::{ApplyEnvironmentFile, ApplyOptions, EnvironmentFile, EnvironmentFileError};
pub use parser::{FileLine, ValuePart};

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