-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
46 lines (38 loc) · 1.18 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
40
41
42
43
44
45
46
[package]
name = "minisign"
version = "0.7.7"
authors = [
"Frank Denis <[email protected]>",
"Daniel Rangel <[email protected]>",
]
description = "A crate to sign files and verify signatures."
edition = "2018"
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"
[target.'cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))'.dependencies]
getrandom = { version = "0.2", optional = false, default-features = false, features = [
"js",
] }
[target.'cfg(not(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown")))'.dependencies]
getrandom = { version = "0.2", optional = false, default-features = false }
[dependencies]
scrypt = { version = "0.11.0", default-features = false }
[target.'cfg(any(windows, unix))'.dependencies]
rpassword = "7.3.1"
[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