This repository has been archived by the owner on Feb 25, 2021. It is now read-only.
forked from tendermint/signatory
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
70 lines (62 loc) · 1.96 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[package]
name = "signatory"
description = "Multi-provider elliptic curve digital signature library with ECDSA and Ed25519 support"
version = "0.16.0" # Also update html_root_url in lib.rs when bumping this
license = "Apache-2.0 OR MIT"
authors = ["Tony Arcieri <[email protected]>"]
homepage = "https://github.com/tendermint/signatory"
repository = "https://github.com/tendermint/signatory/tree/develop"
readme = "README.md"
categories = ["authentication", "cryptography", "no-std"]
keywords = ["cryptography", "ecdsa", "ed25519", "signing", "signatures"]
edition = "2018"
autobenches = false
[badges]
circle-ci = { repository = "tendermint/signatory", branch = "develop" }
maintenance = { status = "passively-maintained" }
[dependencies]
ecdsa = { version = "0.1", optional = true }
ed25519 = { version = "1.0.0-pre.1", optional = true, default-features = false }
getrandom = { version = "0.1", optional = true, default-features = false }
sha2 = { version = "0.8", optional = true, default-features = false }
signature = { version = "1.0.0-pre.1", default-features = false }
zeroize = { version = "1", default-features = false }
[dependencies.subtle-encoding]
version = "0.4"
optional = true
default-features = false
features = ["base64", "hex"]
[features]
alloc = []
default = ["encoding", "getrandom", "std"]
digest = ["signature/digest-preview"]
encoding = ["subtle-encoding"]
pkcs8 = ["encoding"]
std = ["alloc", "signature/std", "subtle-encoding/std"]
test-vectors = ["ecdsa/test-vectors"]
[workspace]
members = [
"signatory-dalek",
"signatory-ledger-tm",
"signatory-ring",
"signatory-secp256k1",
"signatory-sodiumoxide",
"signatory-sgx",
]
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = false
debug-assertions = false
codegen-units = 1
panic = "abort"
[profile.bench]
opt-level = 3
debug = false
rpath = false
lto = false
debug-assertions = false
codegen-units = 1
[package.metadata.docs.rs]
all-features = true