libbolt/Cargo.toml

36 lines
991 B
TOML

[package]
name = "libbolt"
version = "0.1.0"
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/yeletech/libbolt"
repository = "https://github.com/yeletech/libbolt"
license = "MIT License"
[dependencies]
rand = "0.5.0-pre.2"
rand_core = "0.2.1"
bn = { git = "https://github.com/yeletech/bn", branch = "master" }
bincode = "0.6.1"
sodiumoxide = "0.0.16"
serde = "1.0"
serde_derive = "1.0"
time = "*"
rustc-serialize = "0.3"
secp256k1 = { git = "https://github.com/yeletech/rust-secp256k1", branch = "master", features = ["rand"] }
curve25519-dalek = "^0.19"
bulletproofs = { git = "https://github.com/dalek-cryptography/bulletproofs", branch = "main" }
sha2 = "0.7.1"
[dev-dependencies.bincode]
version = "~0.6.0"
default-features = false
features = ["rustc-serialize"]
[[bin]]
name = "bolt"
path = "bin/bolt.rs"