libbolt/Cargo.toml

29 lines
893 B
TOML
Raw Permalink 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]
rand = "0.7"
2019-11-18 20:11:50 -08:00
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"
2019-08-26 08:08:49 -07:00
serde_bytes = "0.11.2"
2018-06-05 10:26:16 -07:00
time = "*"
secp256k1 = { version = "0.16.0", features = ["serde"] }
2018-12-22 12:35:13 -08:00
sha2 = { version = "0.8", default-features = false }
hex = "0.3.2"
2018-02-24 23:46:52 -08:00
[lib]
2019-11-19 06:41:08 -08:00
crate-type = ["lib", "cdylib", "staticlib"]
2018-07-24 18:42:07 -07:00