forked from wasmCloud/nkeys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (35 loc) · 1.19 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
[package]
name = "nkeys"
version = "0.0.9"
authors = ["Kevin Hoffman <[email protected]>"]
edition = "2018"
description = "Rust implementation of the NATS nkeys library"
license = "Apache-2.0"
homepage = "https://github.com/encabulators/nkeys"
documentation = "https://docs.rs/nkeys"
repository = "https://github.com/encabulators/nkeys"
readme = "README.md"
keywords = ["crypto", "nats", "ed25519", "cryptography"]
categories = ["cryptography", "authentication"]
[badges]
travis-ci = { repository = "encabulators/nkeys", branch = "master" }
[features]
cli = ["quicli", "structopt", "term-table", "exitfailure", "env_logger", "serde_json"]
[[bin]]
name = "nk"
required-features = ["cli"]
[dependencies]
signatory = "0.18.1"
signatory-dalek = "0.18.1"
ed25519-dalek = { version = "1.0.0-pre.2", features = ["std"] }
rand = "0.7.3"
byteorder = "1.3.4"
data-encoding = "2.2.0"
log = "0.4.8"
# CLI Dependencies
quicli = { version = "0.4", optional = true }
structopt = { version = "0.3.11", optional = true }
term-table = { version = "1.2.0", optional = true }
exitfailure = { version = "0.5.1", optional =true }
env_logger = { version = "0.7.1", optional = true }
serde_json = { version = "1.0", optional = true }