Documentation
[package]
authors = ["MaidSafe Developers <dev@maidsafe.net>"]
description = "SAFE App"
documentation = "https://docs.rs/safe_app"
homepage = "https://maidsafe.net"
license = "GPL-3.0"
name = "safe_app"
readme = "README.md"
repository = "https://github.com/maidsafe/safe_client_libs"
version = "0.4.0"
build = "build.rs"

[dependencies]
config_file_handler = "~0.8.2"
ffi_utils = { path = "../ffi_utils", version = "~0.3.0" }
futures = "~0.1.15"
log = "~0.3.7"
lru-cache = "~0.1.0"
maidsafe_utilities = "~0.14.1"
rand = "~0.3.16"
routing = "~0.33.2"
rust_sodium = "~0.5.0"
serde = "~1.0.11"
serde_derive = "~1.0.11"
safe_authenticator = { path = "../safe_authenticator", version = "~0.4.0", optional = true }
safe_core = { path = "../safe_core", version = "~0.27.0" }
self_encryption = "~0.11.1"
tiny-keccak = "~1.3.1"
tokio-core = "~0.1.9"
unwrap = "~1.1.0"

[dev-dependencies.safe_authenticator]
path = "../safe_authenticator"
version = "~0.4.0"
features = ["testing"]

[dev-dependencies.safe_core]
path = "../safe_core"
version = "~0.27.0"
features = ["testing"]

[build-dependencies]
ffi_utils = { path = "../ffi_utils", version = "~0.3.0" }
unwrap = "~1.1.0"

[features]
use-mock-routing = ["testing", "safe_core/use-mock-routing", "safe_authenticator/use-mock-routing"]
testing = ["safe_core/testing", "safe_authenticator/testing"]

[lib]
crate_type = ["staticlib", "rlib", "cdylib"]