-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 1.12 KB
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 1.12 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
[package]
name = "puff"
description = "puff is a CLI tool that manages private configuration/secret files of your dev projects"
version = "1.1.2-dev"
edition = "2024"
authors = ["Marcin Jahn <marcinj10@gmail.com>"]
readme = "README.md"
homepage = "https://marcinjahn.com/projects/puff.html"
repository = "https://github.com/marcinjahn/puff"
license = "Apache-2.0"
keywords = ["configuration", "secret", "management", "environment", "cli"]
categories = ["command-line-utilities", "config", "development-tools", "filesystem"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-v{ version }-{ target }.zip"
bin-dir = "{ name }-v{ version }-{ target }/{ bin }{ binary-ext }"
pkg-fmt = "zip"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive", "env"] }
clap_complete = { version = "4", features = ["unstable-dynamic"] }
directories = "6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1", features = ["serde", "v4"] }
tempfile = "3"
inquire = "0.9"