2021-12-09 11:19:36 +00:00
|
|
|
[package]
|
|
|
|
name = "epp-client"
|
2022-12-12 12:57:12 +00:00
|
|
|
version = "0.6.0"
|
2022-12-12 12:59:45 +00:00
|
|
|
edition = "2021"
|
2021-12-09 11:19:36 +00:00
|
|
|
license = "MIT"
|
|
|
|
description = "EPP (Extensible Provisioning Protocol) Client Library for Domain Registration and Management"
|
|
|
|
repository = "https://github.com/masalachai/epp-client"
|
|
|
|
|
2021-12-22 10:58:02 +00:00
|
|
|
[features]
|
|
|
|
default = ["tokio-rustls"]
|
|
|
|
|
2021-12-09 11:19:36 +00:00
|
|
|
[dependencies]
|
2022-02-04 21:38:45 +00:00
|
|
|
async-trait = "0.1.52"
|
2021-12-09 11:19:36 +00:00
|
|
|
celes = "2.1"
|
2022-11-19 18:44:40 +00:00
|
|
|
chrono = { version = "0.4.23", features = ["serde"] }
|
2022-11-21 20:25:35 +00:00
|
|
|
quick-xml = { version = "0.26", features = [ "serialize" ] }
|
2021-12-09 11:19:36 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-02-03 09:15:10 +00:00
|
|
|
tokio = { version = "1.0", features = ["io-util", "net", "time"] }
|
2021-12-22 10:58:02 +00:00
|
|
|
tokio-rustls = { version = "0.23", optional = true }
|
2021-12-09 11:19:36 +00:00
|
|
|
tracing = "0.1.29"
|
|
|
|
webpki-roots = "0.22.1"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
regex = "1.5"
|
2023-02-03 09:15:10 +00:00
|
|
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|
2021-12-22 12:03:29 +00:00
|
|
|
tokio-test = "0.4"
|
|
|
|
tracing-subscriber = "0.3.3"
|