-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (35 loc) · 1.03 KB
/
Cargo.toml
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
[package]
name = "dnspod-lib"
version = "0.1.11"
edition = "2021"
authors = ["hangj <guijie.han@gmail.com>"]
readme = "README.md"
description = "DNSPod lib"
keywords = ["dnspod", "ddns"]
license = "MIT"
repository = "https://github.com/hangj/dnspod-lib"
documentation = "https://docs.rs/dnspod-lib/"
exclude = ["/.github/*", "/.gitattributes", "/appveyor.yml", "/Changelog.md", "/clippy.toml", "/codecov.yml"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"dnspod-cli",
"ddnspod",
]
[features]
# Nothing by default
default = []
clap = ["dep:clap"]
[dependencies]
chrono = "0.4.28"
hmac-sha256 = "1.1.7"
literal-enum = "0.1.5"
serde = { version = "1.0.188", features = ["serde_derive"] }
serde_json = "1.0.105"
clap = { version = "4.4.2", features = ["derive", "string"], optional = true }
# for testing
[dev-dependencies]
anyhow = "1.0.75"
reqwest = { version = "0.11.20", features = ["json", "blocking"] }
[patch.crates-io]
# literal-enum = { path = "../literal-enum" }