-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (28 loc) · 1.13 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 = "nym-mobile"
version = "0.1.0"
authors = ["Roberto Santacroce Martins <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "rustylib"
crate-type = ["staticlib", "cdylib"]
[target.'cfg(target_os = "android")'.dependencies]
jni = { version = "0.13.1", default-features = false }
[dependencies]
mix-client = { path = "../nym/common/clients/mix-client" }
nym-client = { path = "../nym/nym-client/" }
crypto = {path = "../nym/common/crypto"}
config = {path = "../nym/common/config"}
pemstore = {path = "../nym/common/pemstore"}
sfw-provider-requests = { path = "../nym/sfw-provider/sfw-provider-requests" }
directory-client = { path = "../nym/common/clients/directory-client" }
topology = {path = "../nym/common/topology" }
pem = "0.7.0"
dirs = "2.0.2"
env_logger = "0.7.1"
clap = "2.33.0"
tokio = { version = "0.2", features = ["full"] }
tokio-tungstenite = "0.10.1"
sphinx = { git = "https://github.com/nymtech/sphinx", rev="5862939c52e4dd76f836856a01787faec32152b4" }
provider-client = { path = "../nym/common/clients/provider-client" }