-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
57 lines (52 loc) · 1.53 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "sovrin-client"
version = "0.1.0"
authors = [
"Sergej Pupykin <[email protected]>",
"Vyacheslav Gudkov <[email protected]>",
"Artem Ivanov <[email protected]>",
"Evgeniy Razinkov <[email protected]>",
"Kirill Neznamov <[email protected]>",
"Sergey Minaev <[email protected]>"
]
description = "Sovrin client with c-callable interface"
license = "MIT/Apache-2.0"
build = "build.rs"
[lib]
name = "sovrin"
path = "src/lib.rs"
crate-type = ["staticlib","rlib", "dylib"]
[[bin]]
name = "sovrin"
path = "src/main.rs"
[features]
default = ["bn_openssl", "ed25519_sodium", "base58_rust_base58", "xsalsa20_sodium", "pair_milagro", "hash_openssl", "local_nodes_pool"]
bn_openssl = ["openssl", "int_traits"]
ed25519_sodium = ["sodiumoxide"]
base58_rust_base58 = ["rust-base58"]
xsalsa20_sodium = ["sodiumoxide"]
pair_milagro = ["milagro-crypto"]
hash_openssl = ["openssl"]
local_nodes_pool = []
[dependencies]
int_traits = { version = "0.1.1", optional = true }
env_logger = "0.4.2"
libc = "0.2.21"
log = "0.3.7"
openssl = { version = "0.9.11", optional = true }
milagro-crypto = { version = "0.1.7", optional = true }
rand = "0.3"
rusqlite = "0.10.1"
rust-base58 = {version = "0.0.4", optional = true}
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
sodiumoxide = {version = "0.0.14", optional = true}
time = "0.1.36"
zmq = "0.8.1"
lazy_static = "0.2"
byteorder = "1.0.0"
[dependencies.uuid]
version = "0.5.0"
default-features = false
features = ["v4"]