2021-07-22 10:35:20 +00:00
|
|
|
[package]
|
|
|
|
name = "epp-client"
|
|
|
|
version = "0.1.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"
|
2021-07-22 10:35:20 +00:00
|
|
|
|
|
|
|
# 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"
|
2021-07-22 10:35:20 +00:00
|
|
|
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"
|
2021-07-22 10:35:20 +00:00
|
|
|
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"
|
2021-07-22 10:35:20 +00:00
|
|
|
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]
|
|
|
|
tokio-test = "*"
|
2021-07-24 19:10:40 +00:00
|
|
|
regex = "1.5"
|