30 lines
809 B
TOML
30 lines
809 B
TOML
[package]
|
|
name = "instant-epp"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.59"
|
|
license = "MIT"
|
|
description = "EPP client library for async Rust"
|
|
repository = "https://github.com/InstantDomain/instant-epp"
|
|
|
|
[features]
|
|
default = ["tokio-rustls"]
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.52"
|
|
celes = "2.1"
|
|
chrono = { version = "0.4.23", features = ["serde"] }
|
|
instant-xml = { version = "0.2", features = ["chrono"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tokio = { version = "1.0", features = ["io-util", "net", "time"] }
|
|
tokio-rustls = { version = "0.23", optional = true }
|
|
tracing = "0.1.29"
|
|
webpki-roots = "0.22.1"
|
|
|
|
[dev-dependencies]
|
|
regex = "1.5"
|
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|
|
tokio-test = "0.4"
|
|
tracing-subscriber = "0.3.3"
|
|
similar-asserts = "1.4.2"
|