-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (34 loc) · 946 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
34
35
36
37
38
39
[package]
name = "revelioBP"
version = "0.2.0"
authors = [
"Suyash Bagad <[email protected]>",
]
readme = "README.md"
license = "MIT"
repository = "https://github.com/suyash67/RevelioBP"
categories = ["cryptography"]
keywords = ["cryptography", "cryptocurrencies", "proof-of-reserves", "grin", "mimblewimble"]
description = "A Rust implementation of RevelioBP - a proof of reserves protocol for mimblewimble cryptocurrencies on curve secp256k1."
exclude = [".gitignore"]
[lib]
crate-type = ["lib"]
[dependencies]
curv = { tag = "v0.2.6", git = "https://github.com/KZen-networks/curv" , features = ["ec_secp256k1"]}
itertools = "0.7.8"
serde = "1.0"
serde_derive = "1.0"
rand = "0.7.3"
time = "0.1"
structopt = "0.2"
[dev-dependencies]
criterion = "0.2"
[package.metadata.docs.rs]
rustdoc-args = [
"--html-in-header",
"katex.html",
]
[[bench]]
name = "reveliobp_benches"
path = "benches/reveliobp_benches.rs"
harness = false