instant-epp/epp-client/Cargo.toml

33 lines
889 B
TOML
Raw Normal View History

[package]
name = "epp-client"
version = "0.2.0"
edition = "2018"
2021-07-26 19:56:34 +00:00
license = "MIT"
authors = ["Ritesh Chitlangi <ritesh@ayravat.com>"]
description = "EPP (Extensible Provisioning Protocol) Client Library for Domain Registration and Management"
repository = "https://github.com/masalachai/epp-client"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
epp-client-macros = { path = "../epp-client-macros" }
bytes = "1"
2021-07-23 16:47:41 +00:00
chrono = "0.4"
confy = "0.4"
futures = "0.3"
2021-07-25 14:34:01 +00:00
env_logger = "0.9"
2021-07-24 19:10:40 +00:00
log = "0.4"
lazy_static = "1.4"
quick-xml = { version = "0.22", features = [ "serialize" ] }
2021-07-24 19:10:40 +00:00
rustls = "0.19"
rustls-pemfile = "0.2"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.0", features = [ "full" ] }
tokio-rustls = "0.22"
webpki = "0.22"
webpki-roots = "0.21"
[dev-dependencies]
2021-07-26 20:02:30 +00:00
tokio-test = "0.4"
2021-07-24 19:10:40 +00:00
regex = "1.5"