instant-epp/epp-client/Cargo.toml
Dirkjan Ochtman bc96fd60f2 Use both version and path for macro dependency
This will use the path when available and use the version otherwise.
Can be kept in releases and the development repo and will do the
right thing.

(I was very surprised for a while that the main crate wasn't picking
up my changes to the macro.)
2021-11-19 12:50:28 +08:00

29 lines
842 B
TOML

[package]
name = "epp-client"
version = "0.3.1"
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"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
epp-client-macros = { version = "0.1", path = "../epp-client-macros" }
bytes = "1"
chrono = "0.4"
env_logger = "0.9"
log = "0.4"
quick-xml = { version = "0.22", features = [ "serialize" ] }
rustls = "0.20"
rustls-pemfile = "0.2"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.0", features = [ "full" ] }
tokio-rustls = "0.23"
webpki-roots = "0.22.1"
[dev-dependencies]
tokio-test = "0.4"
regex = "1.5"