-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
24 lines (21 loc) · 925 Bytes
/
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
[package]
authors = ["Sawan Bhattacharya <[email protected]>","Sambit Chakraborty <[email protected]>"]
description = "Manage your secrets with keyshade cli"
license = "MPL-2.0"
name = "keyshade-cli"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
colored = "2.1.0"
directories = "5.0.1"
inquire = "0.7.4"
serde = {version = "1.0.197", features = ["derive"] }
spinners = "4.1.1"
toml = "0.8.12"
# We optimize the release build for size. (https://doc.rust-lang.org/cargo/reference/profiles.html)
[profile.release]
opt-level = "z" # Optimize for binary size
codegen-units = 1 # improve runtime speed and reduce binary size, at the cost of increased compile times
strip = true #strip debug info and symbols from the compiled binary, to reduce binary size by 4x on Linux