-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
33 lines (29 loc) · 787 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
[package]
name = "zenv"
version = "0.8.0"
description = "Dotenv (.env) loader written in rust"
authors = ["numToStr <sudo@vikasraj.dev>"]
edition = "2018"
homepage = "https://github.com/numToStr/zenv"
repository = "https://github.com/numToStr/zenv"
license = "GPL-3.0-or-later"
readme = "README.md"
keywords = ["env", "environment", "dotenv", "config", "cli"]
categories = ["web-programming", "command-line-utilities"]
exclude = [
"Makefile",
"tests/**",
".github/**"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "zenv"
required-features = ["cli"]
[dependencies]
lexopt = { version = "0.2.0", optional = true }
[features]
cli = ["lexopt"]
[profile.release]
lto = true
codegen-units = 1
panic = "abort"