-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (46 loc) · 1.39 KB
/
Cargo.toml
File metadata and controls
50 lines (46 loc) · 1.39 KB
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
46
47
48
49
50
[package]
name = "envgen"
version = "1.0.6"
edition = "2021"
description = "Generate and validate .env files from one spec - self-documenting config, consistent across environments, secrets stay out of git."
readme = "README.md"
repository = "https://github.com/smorinlabs/envgen"
license = "MIT"
keywords = ["dotenv", "config", "yaml", "schema", "secrets"]
categories = ["command-line-utilities", "config"]
rust-version = "1.88.0"
# Keep packaging deterministic with a root-anchored allowlist.
# Note: Cargo ignores `exclude` when `include` is present.
include = [
"/src/**",
"/schemas/**",
"/build.rs",
"/SCHEMA_VERSION",
"/Cargo.toml",
"/Cargo.lock",
"/README.md",
"/CHANGELOG.md",
"/LICENSE",
]
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1"
jsonschema = { version = "0.18", features = ["draft202012"] }
tokio = { version = "1", features = ["full"] }
chrono = "0.4"
comfy-table = "=7.1.0" # Pin to avoid edition2024 requirement
time = "=0.3.47" # Pin to patched release for RUSTSEC-2026-0009 (requires rust-version 1.88)
dialoguer = "0.11"
colored = "2"
anyhow = "1"
regex = "1"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[dev-dependencies]
tempfile = "3"
assert_cmd = "2"
predicates = "3"
[package.metadata.cargo-machete]
ignored = ["time"] # Used as transitive dependency