-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (36 loc) · 1.17 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
[package]
description = "A simple rust application configuration derive macro."
name = "confgr"
version = "0.2.1"
edition = "2021"
license = "MIT"
repository = "https://github.com/N4D1K-lgtm/confgr"
authors = ["Kidan Nelson <[email protected]>"]
documentation = "https://docs.rs/confgr"
readme = "README.md"
keywords = ["configuration", "settings", "environment", "config"]
categories = ["config", "rust-patterns", "development-tools"]
homepage = "https://github.com/N4D1K-lgtm/confgr"
[dependencies]
confgr_derive = { path = "crates/confgr_derive", version = "0.2.1" }
confgr_core = { path = "crates/confgr_core", version = "0.2.1" }
config = "0.14.0"
[dev-dependencies]
smart-default = "0.7.1"
dotenv = "0.15.0"
serde = { version = "1.0.199", features = ["derive"] }
tempfile = "3.10.1"
[workspace]
members = ["crates/*"]
[workspace.package]
version = "0.2.1"
edition = "2021"
license = "MIT"
repository = "https://github.com/N4D1K-lgtm/confgr"
homepage = "https://github.com/N4D1K-lgtm/confgr"
authors = ["Kidan Nelson <[email protected]>"]
readme = "README.md"
[workspace.dependencies]
config = "0.14.0"
serde = { version = "1.0.199", features = ["derive"] }
thiserror = "1.0.59"