namecheap-client 0.1.1

Unofficial async Rust client for the Namecheap API: domain availability and registration, DNS records, pricing, and account management.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "namecheap-client"
version = "0.1.1"
authors = ["Jackson Ballow <jackson@desync.ai>"]
build = false
exclude = [
    ".github/",
    "/.gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unofficial async Rust client for the Namecheap API: domain availability and registration, DNS records, pricing, and account management."
documentation = "https://docs.rs/namecheap-client"
readme = "README.md"
keywords = [
    "namecheap",
    "dns",
    "domains",
    "registrar",
    "api",
]
categories = [
    "api-bindings",
    "web-programming::http-client",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Jackson-Desync/namecheap-client"

[package.metadata.docs.rs]
all-features = true

[features]
default = ["rustls"]
native-tls = ["reqwest/native-tls"]
rustls = ["reqwest/rustls"]

[lib]
name = "namecheap_client"
path = "src/lib.rs"

[[example]]
name = "dns_email_setup"
path = "examples/dns_email_setup.rs"

[[example]]
name = "dns_update_record"
path = "examples/dns_update_record.rs"

[[example]]
name = "quickstart"
path = "examples/quickstart.rs"

[dependencies.quick-xml]
version = "0.40"
features = ["serialize"]

[dependencies.reqwest]
version = "0.13"
features = ["query"]
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.thiserror]
version = "2"

[dev-dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
]