ff2e24afbc
* Updated directory_client reqwest to 0.10 * Using consistent syntax
21 lines
599 B
TOML
21 lines
599 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
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
futures = "0.3"
|
|
pretty_env_logger = "0.3"
|
|
reqwest = { version = "0.10", features = ["json"] }
|
|
serde = { version = "1.0.104", features = ["derive"] }
|
|
|
|
## internal
|
|
topology = {path = "../../topology"}
|
|
|
|
[dev-dependencies]
|
|
mockito = "0.23.0"
|
|
tokio = { version = "0.2", features = ["macros"] } |