-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (23 loc) · 870 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
25
26
[package]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
name = "libpass"
description = "library for interacting with pass managed data"
version = "0.4.0"
authors = ["Finn Sell <[email protected]>"]
edition = "2021"
repository = "https://github.com/ftsell/libpass-rs"
documentation = "https://docs.rs/libpass/"
license = "MIT"
keywords = ["pass", "password", "manager", "unix"]
categories = ["api-bindings", "cryptography", "data-structures", "filesystem"]
[workspace.metadata.release]
pre-release-commit-message = "bump to version v{{version}}"
tag-name = "v{{version}}"
tag-message = "release {{crate_name}} v{{version}}"
post-release-commit-message = "start next development iteration {{next_version}}"
[dependencies]
log = "0.4.20"
thiserror = "1.0.48"
directories = "5.0.1"
gpgme = "0.11.0"
[dev-dependencies]