-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
43 lines (39 loc) · 947 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
39
40
41
42
43
[package]
name = "envvars"
version = "0.1.10"
edition = "2021"
authors = ["[email protected]"]
description = "Getting environment variables considering shell configuration"
license = "Apache-2.0"
build = "build/mod.rs"
keywords = ["envvar", "shell", "bash", "environment"]
categories = ["config", "os"]
repository = "https://github.com/esrlabs/envvars.git"
homepage = "https://github.com/esrlabs/envvars"
readme = "README.md"
exclude = [
"scripts/*",
"rakefile.rb",
".github/*",
".gitignore"
]
[lib]
name = "envvars"
path = "src/lib.rs"
[dependencies]
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
log = "^0.4"
home = "^0.5"
lazy_static = "^1.4"
thiserror = "^1.0"
blake3 = "^1.3"
is-terminal = "0.4.9"
[build-dependencies]
blake3 = "^1.3"
uuid = { version = "^1.3", features = ["v4"] }
fs_extra = "^1.3"
lazy_static = "^1.4"
[profile.release]
strip = true
opt-level = "z" # Optimize for size.