-
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.41 KB
/
Cargo.toml
File metadata and controls
50 lines (46 loc) · 1.41 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 = "envstash"
version = "0.1.11"
edition = "2024"
authors = ["Franz Geffke <[email protected]>"]
description = "Manage .env files across git branches with versioning, diffing, and optional encryption"
license = "GPL-3.0"
repository = "https://github.com/franzos/envstash"
homepage = "https://github.com/franzos/envstash"
keywords = ["env", "dotenv", "git", "encryption", "cli"]
categories = ["command-line-utilities", "development-tools"]
readme = "README.md"
[dependencies]
aes-gcm = "0.10"
base64 = "0.22"
argon2 = "0.5"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4", features = ["derive"] }
clap_complete = { version = "4.5", features = ["unstable-dynamic"] }
hmac = "0.12"
rand = "0.8"
rpassword = "5"
rusqlite = { version = "0.32", features = ["bundled"] }
rusqlite_migration = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
colored = "3"
comfy-table = "7.1"
thiserror = "2"
git2 = { version = "0.19", default-features = false, features = ["vendored-libgit2"] }
toml = "0.9.11"
zeroize = "1"
ureq = { version = "3", features = ["multipart"] }
[package.metadata.deb]
maintainer = "Franz Geffke <[email protected]>"
section = "utils"
assets = [
["target/release/envstash", "usr/bin/", "755"],
]
[package.metadata.generate-rpm]
assets = [
{ source = "target/release/envstash", dest = "/usr/bin/envstash", mode = "755" },
]
[dev-dependencies]
tempfile = "3"