forked from safex/safex
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
39 lines (31 loc) · 775 Bytes
/
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
33
34
35
36
37
38
39
[package]
authors = ["Safe Exchange Developers <[email protected]>"]
description = "Decentralized Marketplace - Cryptographic object creation for trade."
documentation = "http://safex.io/safex/latest"
homepage = "http://safex.io"
license = "GPL-3.0"
name = "safex"
readme = "README.md"
repository = "https://github.com/safex/safex"
version = "0.1.0"
[lib]
name = "safex"
src = "src/lib.rs"
[dependencies]
rust-crypto = "0.2"
rand = "0.3"
rustc-serialize = "0.3"
lazy_static = "0.1"
byteorder = "0.3"
bitcoin = { path = "bitcoin" }
[dependencies.secp256k1]
git = "https://github.com/safex/rust-secp256k1"
[[example]]
name = "testkeys"
path = "examples/testkeys.rs"
[[example]]
name = "import"
path = "examples/import.rs"
[[example]]
name = "keys"
path = "examples/keys.rs"