3 releases

0.1.3 Mar 5, 2021
0.1.2 Sep 13, 2020
0.1.1 Sep 13, 2020
0.1.0 Sep 13, 2020

#410 in Configuration

Download history 968/week @ 2024-11-16 1127/week @ 2024-11-23 2006/week @ 2024-11-30 2101/week @ 2024-12-07 1551/week @ 2024-12-14 375/week @ 2024-12-21 282/week @ 2024-12-28 998/week @ 2025-01-04 1225/week @ 2025-01-11 1411/week @ 2025-01-18 1547/week @ 2025-01-25 1364/week @ 2025-02-01 1061/week @ 2025-02-08 953/week @ 2025-02-15 932/week @ 2025-02-22 1012/week @ 2025-03-01

4,117 downloads per month
Used in 16 crates (14 directly)

ISC license

11KB
201 lines

dotenv-parser

Pest-based parser for .env files.

Build Code Coverage Downloads (all time) ISC License

dotenv-parser is a minimal crate that exposes an .env file parser generated by Pest.

Usage

The API is minimal: this crate exposes a single parse_dotenv function which accepts a string reference and returns a BTreeMap wrapped in a Result. The parser handles comments, strings and the export syntax automatically. This program

use dotenv_parser::parse_dotenv;

fn main() {
    let source = r#"
        ENV_FOR_HYDRO='testing 2' # another one here
        export USER_ID=5gpPN5rcv5G41U_S
        API_TOKEN=30af563ccc668bc8ced9e24e  # relax! these values are fake
        APP_SITE_URL=https://my.example.com
    "#;
    println!("{:#?}", parse_dotenv(source).unwrap());
}

prints

{
    "API_TOKEN": "30af563ccc668bc8ced9e24e",
    "APP_SITE_URL": "https://my.example.com",
    "ENV_FOR_HYDRO": "testing 2",
    "USER_ID": "5gpPN5rcv5G41U_S",
}

Dependencies

~2–2.7MB
~55K SLoC