libbolt/Cargo.toml

37 lines
1.0 KiB
TOML
Raw Normal View History

2018-02-16 05:54:59 -08:00
[package]
name = "libbolt"
2018-02-24 00:12:58 -08:00
version = "0.1.0"
2018-02-16 05:54:59 -08:00
authors = ["J. Ayo Akinyele <ayo@yeletech.org>"]
description = "library for Blind Off-chain Lightweight Transactions (BOLT)"
keywords = ["zcash", "payment channels", "bolt"]
readme = "README.md"
homepage = "https://github.com/ZcashFoundation/libbolt"
repository = "https://github.com/ZcashFoundation/libbolt"
2018-02-16 05:54:59 -08:00
license = "MIT License"
[dependencies]
2018-07-21 21:22:21 -07:00
rand = "0.5.0-pre.2"
rand_core = "0.2.1"
2018-09-06 17:50:32 -07:00
bn = { git = "https://github.com/ZcashFoundation/bn", branch = "master" }
2018-06-05 10:26:16 -07:00
bincode = "0.6.1"
2018-02-24 23:46:52 -08:00
sodiumoxide = "0.0.16"
serde = "1.0"
serde_derive = "1.0"
2018-06-05 10:26:16 -07:00
time = "*"
2018-06-07 23:57:46 -07:00
rustc-serialize = "0.3"
2018-09-06 17:50:32 -07:00
secp256k1 = { git = "https://github.com/ZcashFoundation/rust-secp256k1", branch = "master", features = ["rand"] }
curve25519-dalek = { version = "0.21", features = ["serde"] }
merlin = "0.4"
2018-07-21 21:22:21 -07:00
bulletproofs = { git = "https://github.com/dalek-cryptography/bulletproofs", branch = "main" }
sha2 = "0.7.1"
2018-02-24 23:46:52 -08:00
[dev-dependencies.bincode]
version = "~0.6.0"
default-features = false
features = ["rustc-serialize"]
2018-02-24 00:12:58 -08:00
[[bin]]
name = "bolt"
path = "bin/bolt.rs"
2018-07-24 18:42:07 -07:00