forked from stellar/slingshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (33 loc) · 882 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
[package]
name = "blockchain"
version = "0.1.0"
authors = ["Oleg Andreev <[email protected]>"]
edition = "2018"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/stellar/slingshot"
categories = ["cryptography", "blockchain"]
keywords = ["cryptography", "blockchain", "zero-knowledge", "bulletproofs"]
description = "A blockchain protocol for ZkVM transactions"
[dependencies]
thiserror = "1"
byteorder = "1"
merlin = "2"
rand = "0.7"
subtle = "2"
curve25519-dalek = { version = "3", features = ["serde"] }
serde = { version = "1.0", features=["derive"] }
subtle-encoding = "0.3"
hex = "^0.3"
async-trait = "0.1.24"
siphasher = "0.3.1"
[dependencies.zkvm]
path = "../zkvm"
[dependencies.starsig]
path = "../starsig"
[dependencies.readerwriter]
path = "../readerwriter"
[dev-dependencies]
criterion = "0.2"
serde_json = "1.0"
futures-executor = "0.3"