instant-epp/Cargo.toml

32 lines
1.0 KiB
TOML
Raw Normal View History

2021-12-09 11:19:36 +00:00
[package]
2023-02-23 12:39:42 +00:00
name = "instant-epp"
version = "0.3.0"
2022-12-12 12:59:45 +00:00
edition = "2021"
2023-10-25 20:42:00 +00:00
rust-version = "1.63"
2021-12-09 11:19:36 +00:00
license = "MIT"
description = "EPP client library for async Rust"
2024-03-25 13:36:52 +00:00
repository = "https://github.com/instant-labs/instant-epp"
2021-12-09 11:19:36 +00:00
2021-12-22 10:58:02 +00:00
[features]
2023-08-02 13:31:45 +00:00
default = ["rustls"]
2023-12-11 13:45:15 +00:00
rustls = ["tokio-rustls", "rustls-pki-types", "rustls-native-certs"]
2021-12-22 10:58:02 +00:00
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"] }
2023-10-25 20:38:55 +00:00
instant-xml = { version = "0.4", features = ["chrono"] }
2023-12-11 13:45:15 +00:00
rustls-native-certs = { version = "0.7", optional = true }
rustls-pki-types = { version = "1", optional = true }
2021-12-09 11:19:36 +00:00
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.0", features = ["io-util", "net", "time"] }
2024-03-25 13:34:19 +00:00
tokio-rustls = { version = "0.26", optional = true, default-features = false, features = ["logging", "ring", "tls12"] }
2021-12-09 11:19:36 +00:00
tracing = "0.1.29"
[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"