-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (30 loc) · 922 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
[package]
name = "radicle-ed25519-compact"
version = "2.0.3"
authors = ["Frank Denis <[email protected]>"]
edition = "2018"
description = "Fork of the `ed25519-compact` crate for Radicle"
readme = "README.md"
keywords = ["crypto", "ed25519", "x25519", "eddsa", "signature"]
repository = "https://github.com/radicle-dev/radicle-ed25519-compact"
homepage = "https://github.com/radicle-dev/radicle-ed25519-compact"
categories = ["algorithms", "cryptography", "no-std", "wasm"]
license = "MIT"
[features]
default = ["random", "std", "x25519", "pem"]
pem = ["ct-codecs"]
random = ["getrandom"]
traits = ["ed25519"]
self-verify = []
blind-keys = []
std = []
opt_size = []
disable-signatures = []
x25519 = []
[dependencies]
ct-codecs = { version = "1.1", optional = true }
getrandom = { version = "0.2", optional = true }
ed25519 = { version = "1.5", optional = true }
[dev-dependencies]
getrandom = "0.2"
ct-codecs = "1.1"