-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (28 loc) · 1.02 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
[package]
name = "rainboltd"
version = "0.1.0"
authors = ["Kai Aichholz <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# warp = "0.1.20"
warp = { git = "https://github.com/seanmonstar/warp", branch = "master" }
bolt = { path = "../libbolt" }
pairing = { git = "https://github.com/boltlabs-inc/pairing", branch = "master", features = ["serde"] }
serde = "1.0.102"
serde_json = "1.0.41"
rand = "0.6"
secp256k1 = { version = "0.15.0", features = ["rand", "serde"] }
ff = { git = "https://github.com/boltlabs-inc/ff", branch = "master" }
# futures-preview = { version = "0.3.0-alpha.19", features = ["compat"] }
# futures01 = { package = "futures", version = "0.1.29", optional = true }
# futures-util = "0.1"
# tokio = "0.1.22"
# tokio-timer = "0.2.7"
futures = "0.1.29"
tokio = "0.2.0-alpha.6"
# reqwest = "0.9.22"
reqwest = { version = "0.10.0-alpha.1", features = ["json"] }
http = "0.1.19"
lazy_static = "1.4.0"
# async-std = "0.99.11"