28 lines
782 B
TOML
28 lines
782 B
TOML
[package]
|
|
name = "epp-client"
|
|
version = "0.4.0"
|
|
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"
|
|
|
|
[features]
|
|
default = ["tokio-rustls"]
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.52"
|
|
celes = "2.1"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
quick-xml = { version = "0.23", features = [ "serialize" ] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tokio = { version = "1.0", features = [ "full" ] }
|
|
tokio-rustls = { version = "0.23", optional = true }
|
|
tracing = "0.1.29"
|
|
webpki-roots = "0.22.1"
|
|
|
|
[dev-dependencies]
|
|
regex = "1.5"
|
|
tokio-test = "0.4"
|
|
tracing-subscriber = "0.3.3"
|