-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (35 loc) · 1.16 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "nicator"
version = "0.3.3"
authors = ["Erik Schubert <[email protected]>"]
description = "A lightweight encrypting git credential helper"
readme = "README.md"
license = "Unlicense"
edition = "2018"
repository = "https://github.com/Nuckal777/nicator"
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
argon2 = "0.5"
bincode = "1.3"
byteorder = "1.5"
chacha20poly1305 = "0.10"
clap = { version ="4.5", features = ["cargo"] }
nix = { version = "0.29", features = ["user", "process", "poll"]}
percent-encoding = "2.3"
rand_core = { version = "0.6", features = ["std"] }
rpassword = "7.3"
secstr = { version = "0.5", features = ["serde"] }
serde = "1.0"
serde_derive = "1.0"
signal-hook = "0.3"
thiserror = "2.0"
url = "2.5"
[profile.release]
strip="debuginfo"
[package.metadata.generate-rpm]
assets = [
{ source = "target/release/nicator", dest = "/usr/bin/nicator", mode = "0755" },
{ source = "LICENSE", dest = "/usr/share/doc/nicator/LICENSE", doc = true, mode = "0644" },
{ source = "README.md", dest = "/usr/share/doc/nicator/README.md", doc = true, mode = "0644" }
]