epp-client/Cargo.toml

28 lines
782 B
TOML
Raw Permalink Normal View History

2021-12-09 11:19:36 +00:00
[package]
name = "epp-client"
2022-07-26 06:49:37 +00:00
version = "0.4.0"
2021-12-09 11:19:36 +00:00
edition = "2018"
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-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-02-22 17:41:26 +00:00
chrono = { version = "0.4", features = ["serde"] }
2021-12-09 11:19:36 +00:00
quick-xml = { version = "0.22", features = [ "serialize" ] }
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.0", features = [ "full" ] }
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"
2021-12-22 12:03:29 +00:00
tokio-test = "0.4"
tracing-subscriber = "0.3.3"