instant-epp/Cargo.toml

30 lines
863 B
TOML
Raw Normal View History

2021-12-09 11:19:36 +00:00
[package]
name = "epp-client"
version = "0.7.0"
2022-12-12 12:59:45 +00:00
edition = "2021"
2023-02-17 20:06:51 +00:00
rust-version = "1.59"
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"
chrono = { version = "0.4.23", features = ["serde"] }
2022-11-21 19:34:25 +00:00
instant-xml = { version = "0.1", features = ["chrono"] }
2021-12-09 11:19:36 +00:00
serde = { version = "1.0", features = ["derive"] }
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"
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"
2022-11-21 19:34:25 +00:00
similar-asserts = "1.4.2"