libbolt/Cargo.toml

39 lines
1.2 KiB
TOML
Raw Normal View History

2018-02-16 05:54:59 -08:00
[package]
name = "bolt"
version = "0.3.0"
authors = ["Bolt Labs, Inc <info@boltlabs.io>"]
2018-02-16 05:54:59 -08:00
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]
2019-06-12 23:52:20 -07:00
rand = "0.6"
rand_core = "0.4.0"
2019-06-12 23:52:20 -07:00
rand_xorshift = "0.1"
ff = { git = "https://github.com/boltlabs-inc/ff", branch = "master" }
2019-07-29 14:13:40 -07:00
pairing = { git = "https://github.com/boltlabs-inc/pairing", branch = "master", features = ["serde"] }
2018-06-05 10:26:16 -07:00
bincode = "0.6.1"
2018-02-24 23:46:52 -08:00
sodiumoxide = "0.0.16"
libc = "*"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = "1.0"
2018-06-05 10:26:16 -07:00
time = "*"
secp256k1 = { version = "0.15.0", features = ["rand", "serde"] }
2019-03-03 14:43:20 -08:00
curve25519-dalek = { version = "1", features = ["serde"] }
2018-12-22 12:35:13 -08:00
merlin = "1.0.0"
2019-08-08 05:41:59 -07:00
bulletproofs = { git = "https://github.com/dalek-cryptography/bulletproofs", tag = "1.0.2" }
2018-12-22 12:35:13 -08:00
sha2 = { version = "0.8", default-features = false }
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
[lib]
crate-type = ["lib", "cdylib"]
2018-07-24 18:42:07 -07:00