-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 916 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 916 Bytes
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
[package]
name = "enject"
version = "0.2.0-alpha"
edition = "2021"
description = "Hide .env secrets from AI agents. Stores secrets in an encrypted local store and injects them into subprocesses at runtime — your .env file contains only symbolic references, never real values."
license = "MIT"
repository = "https://github.com/greatscott/enject"
readme = "README.md"
keywords = ["secrets", "env", "security", "cli", "encryption"]
categories = ["command-line-utilities", "cryptography"]
[[bin]]
name = "enject"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
aes-gcm = "0.10"
argon2 = "0.5"
zeroize = { version = "1", features = ["derive"] }
secrecy = { version = "0.8", features = ["serde"] }
rpassword = "7"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
anyhow = "1"
thiserror = "1"
rand = "0.8"
hex = "0.4"
[dev-dependencies]
tempfile = "3"