forked from evernym/sovrin-client-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (36 loc) · 986 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
40
41
[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"
[lib]
name = "libsovrin"
path = "src/lib.rs"
[[bin]]
name = "sovrin"
path = "src/main.rs"
[features]
default = ["bn_openssl"]
bn_openssl = ["openssl"]
[dependencies]
int_traits = "0.1.1"
env_logger = "0.4.2"
libc = "0.2.21"
log = "0.3.7"
openssl = { version = "0.9.9", optional = true}
milagro-crypto = { git = "https://github.com/DSRCorporation/milagro-crypto-rust" }
rand = "0.3"
rusqlite = "0.10.1"
rust-base58 = "0.0.4"
rustc-serialize = "0.3"
sodiumoxide = "0.0.14"
zmq = "0.8.1"
lazy_static = "0.2"