forked from jedisct1/rust-minisign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (30 loc) · 809 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
27
28
29
30
31
32
33
34
35
36
[package]
name = "minisign"
version = "0.5.11"
authors = ["Frank Denis <github@pureftpd.org>", "Daniel Rangel <daniel@rangel.in>"]
description = "A crate to sign files and verify signatures."
license = "MIT"
readme = "README.md"
categories = ["cryptography"]
keywords = ["command-line", "sign", "publickey", "cryptography", "minisign"]
repository = "https://github.com/jedisct1/rust-minisign"
homepage = "https://github.com/jedisct1/rust-minisign"
[dependencies]
base64 = "0.10"
getrandom = "0.1.3"
scrypt = { version = "0.2", default-features = false }
[target.'cfg(any(windows, unix))'.dependencies]
rpassword = "3.0"
[profile.dev]
lto = "thin"
opt-level = 3
[profile.test]
lto = "thin"
opt-level = 3
[profile.bench]
lto = true
opt-level = 3
[profile.release]
lto = true
panic = "abort"
opt-level = 3