-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
23 lines (21 loc) · 832 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
[package]
name = "puff"
description = "puff is a CLI tool that manages private configuration/secret files of your dev projects"
version = "0.1.7"
edition = "2021"
authors = ["Marcin Jahn <[email protected]>"]
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
[dependencies]
structopt = "0.3"
directories = "4.0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "0.8", features = ["serde", "v4"] }
symlink = "0.1.0"
tempfile = "3"