-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (48 loc) · 1.36 KB
/
Cargo.toml
File metadata and controls
51 lines (48 loc) · 1.36 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
51
[package]
name = "smolcase"
version = "1.3.0"
edition = "2024"
description = "Zero-infrastructure secret management for development teams."
license = "MIT"
authors = ["Sabir Khan <simplysabir@gmail.com>"]
repository = "https://github.com/simplysabir/smolcase"
homepage = "https://github.com/simplysabir/smolcase"
documentation = "https://github.com/simplysabir/smolcase#readme"
keywords = ["cli", "secret", "management"]
categories = ["command-line-utilities"]
readme = "README.md"
# Optimize for release builds
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true # Automatically strip symbols
[dependencies]
clap = { version = "4.0", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
tokio = { version = "1.0", features = ["full"] }
anyhow = "1.0"
thiserror = "1.0"
rpassword = "7.0"
colored = "2.0"
dialoguer = "0.10"
indicatif = "0.17"
git2 = { version = "0.18", default-features = false, features = ["vendored-openssl"] }
rand = "0.8"
argon2 = "0.5"
chacha20poly1305 = "0.10"
base64 = "0.21"
uuid = { version = "1.0", features = ["v4", "serde"] }
dirs = "5.0"
toml = "0.8"
chrono = { version = "0.4.41", features = ["serde"]}
sha2 = "0.10"
tempfile = "3.20.0"
hostname = "0.4.1"
regex = "1.10"
[features]
default = ["vendored-openssl"]
vendored-openssl = ["git2/vendored-openssl"]