-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (39 loc) · 1.09 KB
/
Cargo.toml
File metadata and controls
47 lines (39 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "registrar"
version = "0.9.1"
edition = "2024"
license = "MPL-2.0"
authors = ["Excerion Sun <dev@excsn.com>"]
description = "A client for domain registrar APIs like Porkbun and Name.com"
keywords = ["api", "dns", "domain", "registrar", "porkbun"]
categories = ["api-bindings", "web-programming"]
readme = "README.md"
repository = "https://github.com/excsn/registrar"
exclude = [
"/tests/",
]
[features]
default = ["porkbun", "name-com"]
porkbun = []
name-com = []
integration-test = []
[dependencies]
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
[dev-dependencies]
c5store = { version = "^0", features = ["dotenv"] }
ctor = "0.2"
once_cell = "^1.19"
tokio = { version = "^1", features = ["macros", "rt-multi-thread"] }
serde = "^1.0"
uuid = { version = "^1.18", features = ["v4"] }
[[test]]
name = "name_com"
path = "tests/name_com.rs"
required-features = ["name-com", "integration-test"]
[[test]]
name = "porkbun"
path = "tests/porkbun.rs"
required-features = ["porkbun", "integration-test"]