forked from emberian/rust-dotenv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (32 loc) · 933 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "dotenv"
version = "0.11.0"
authors = [
"Noemi Lapresta <[email protected]>",
"Craig Hills <[email protected]>",
"Mike Piccolo <[email protected]>",
"Alice Maz <[email protected]>",
"Sean Griffin <[email protected]>",
"Adam Sharp <[email protected]>",
]
readme = "README.md"
keywords = ["environment", "env", "dotenv", "settings", "config"]
license = "MIT"
homepage = "https://github.com/purpliminal/rust-dotenv"
repository = "https://github.com/purpliminal/rust-dotenv"
description = "A `dotenv` implementation for Rust"
[dependencies]
derive-error-chain = "0.11.1"
error-chain = { version = "0.11.0", default-features = false }
lazy_static = "1.0.0"
regex = "0.2.1"
clap = { version = "2", optional = true }
[dev-dependencies]
tempdir = "0.3.0"
[features]
backtrace = ["error-chain/backtrace"]
cli = ["clap"]
default = ["backtrace"]
[[bin]]
name = "dotenv"
required-features = ["cli"]