fcfe463efa
* Removed constructor from NymTopology trait + split directory_client * Removed bunch of duplicate wasm topology code * Post-merge changes
24 lines
638 B
TOML
24 lines
638 B
TOML
[package]
|
|
name = "directory-client"
|
|
version = "0.1.0"
|
|
authors = ["Dave Hrycyszyn <futurechimp@users.noreply.github.com>", "Jędrzej Stuczyński <andrew@nymtech.net>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
offline-test = []
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
futures = "0.3"
|
|
pretty_env_logger = "0.3"
|
|
serde = { version = "1.0.104", features = ["derive"] }
|
|
reqwest = { version = "0.10", features = ["json"] }
|
|
|
|
## internal
|
|
directory-client-models = { path = "models" }
|
|
|
|
[dev-dependencies]
|
|
mockito = "0.23.0"
|
|
tokio = { version = "0.2", features = ["macros"] } |