-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 886 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
[package]
name = "grafton-config"
version = "0.2.1"
edition = "2021"
authors = ["Grant Sparks <[email protected]>"]
description = "Load configuration from toml files with token variable expansion and environment overrides"
license = "Apache-2.0"
repository = "https://github.com/GrantSparks/grafton-config"
homepage = "https://www.grafton.ai"
categories = ["config"]
keywords = ["configuration", "config", "settings"]
include = ["Cargo.toml", "src/**/*"]
readme = "readme.md"
[dependencies]
derivative = "2.2.0"
lazy_static = "1.5.0"
regex = "1.10"
serde_json = "1.0"
thiserror = "1.0"
once_cell = "1.19.0"
figment = { version = "0.10.19", features = ["env", "toml"] }
strum = { version = "0.26.3", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
[dev-dependencies]
tempfile = "3.10.1"
[[example]]
name = "config_example"
path = "examples/config_example.rs"