-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (37 loc) · 1.29 KB
/
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
44
45
[package]
name = "config-rs-ng"
version = "0.1.0"
edition = "2021"
authors = ["Matthias Beyer <[email protected]>"]
categories = ["config"]
description = "Layered configuration system for Rust applications."
keywords = ["config", "configuration", "settings", "env", "environment"]
license = "MIT/Apache-2.0"
readme = "README.md"
homepage = "https://github.com/matthiasbeyer/config-rs-ng"
repository = "https://github.com/matthiasbeyer/config-rs-ng"
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
serde = { version = "1.0.159", features = ["derive"] }
thiserror = "1"
url = "2.2"
async-trait = { version = "0.1", optional = true }
itertools = { version = "0.10", optional = true }
futures = { version = "0.3", optional = true }
serde_json = { version = "1.0.95", optional = true }
toml = { version = "0.7", optional = true }
tokio = { version = "1", optional = true, features = ["fs"] }
tracing = { version = "0.1.37", optional = true }
static_assertions = "1.1.0"
downcast-rs = "1.2.0"
[dependencies.config_rs_ng_derive]
path = "config_rs_ng_derive"
[features]
default = ["async", "json", "toml"]
json = ["serde_json"]
toml = ["dep:toml"]
async = ["async-trait", "futures", "itertools", "tokio"]
tracing = ["dep:tracing"]
[dev-dependencies]
tokio = { version = "1", features = ["full"] }