forked from MystenLabs/fastcrypto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (36 loc) · 936 Bytes
/
Cargo.toml
File metadata and controls
43 lines (36 loc) · 936 Bytes
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
[package]
name = "fastcrypto-cli"
version = "0.1.1"
license = "Apache-2.0"
authors = ["Mysten Labs <build@mystenlabs.com>"]
edition = "2021"
publish = ["crates-io"]
description = "Command line tools for cryptographic functions"
repository = "https://github.com/MystenLabs/fastcrypto"
[dependencies]
clap = { version = "4.1.8", features = ["derive"] }
fastcrypto = { path = "../fastcrypto", features = ["copy_key"] }
fastcrypto-vdf = { path = "../fastcrypto-vdf", features = ["experimental"] }
hex = "0.4.3"
rand.workspace = true
exitcode = "1.1.2"
bcs.workspace = true
serde = { version = "1.0.156", features = ["derive"] }
[dev-dependencies]
assert_cmd = "2.0.0"
regex = "1.5.4"
[[bin]]
name = "ecvrf-cli"
path = "src/ecvrf.rs"
[[bin]]
name = "encode-cli"
path = "src/encode_cli.rs"
[[bin]]
name = "sigs-cli"
path = "src/sigs_cli.rs"
[[bin]]
name = "vdf-cli"
path = "src/vdf.rs"
[[bin]]
name = "tlock-cli"
path = "src/tlock.rs"