This repository has been archived by the owner on Feb 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
62 lines (55 loc) · 1.58 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "zkchannels"
version = "0.4.0"
authors = ["Bolt Labs, Inc <[email protected]>"]
description = "library implements zkChannels (formerly Blind Off-chain Lightweight Transactions - BOLT)"
keywords = ["bitcoin", "zcash", "anonymous payment channels", "zkchannels"]
readme = "README.md"
homepage = "https://github.com/boltlabs-inc/libzkchannels"
repository = "https://github.com/boltlabs-inc/libzkchannels"
license = "MIT License"
build = "build.rs"
links = "token-utils"
[dependencies]
rand = "0.7"
rand_xorshift = "0.2"
redis = "0.15.1"
ff_bl = { git = "https://github.com/boltlabs-inc/ff", branch = "master" }
pairing_bl = { git = "https://github.com/boltlabs-inc/pairing", branch = "master", features = ["serde"] }
libc = "*"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = "1.0"
serde_bytes = "0.11"
time = "0.1"
secp256k1 = { git = "https://github.com/boltlabs-inc/rust-secp256k1", branch = "0.15.5-partial-sig", features = ["serde"] }
sha2 = { version = "0.8", default-features = false }
sha3 = "0.9.1"
ripemd160 = "0.8"
hmac = "0.7"
bit-array = "*"
typenum = "*"
num = "*"
hex = "0.4.2"
structopt = "0.3.7"
bufstream = "0.1"
zkchan-tx = { git = "https://github.com/boltlabs-inc/zkchan-tx" }
enum-display-derive = "0.1.0"
confy = "0.4"
num-bigint = "0.3.2"
[build-dependencies]
bindgen="*"
cbindgen="*"
[dev-dependencies]
rusty-fork = "0.2.1"
[lib]
crate-type = ["lib", "cdylib", "staticlib"]
[[bin]]
name = "zkchannels-mpc"
path = "src/cli_mpc.rs"
[[bin]]
name = "zkchannels-cli"
path = "src/cli_zk.rs"
[[bin]]
name = "mpchelpers"
path = "src/mpc_helpers.rs"