mirror of
https://github.com/instant-labs/instant-epp.git
synced 2025-02-01 14:32:08 +00:00
bc96fd60f2
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.)
29 lines
842 B
TOML
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"
|