-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (38 loc) · 991 Bytes
/
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
42
[package]
name = "wapi"
version = "0.1.0"
edition = "2021"
authors = ["Amon Rayfa <[email protected]>"]
description = "A cross-platform DDNS client that automatically updates your DNS records when your IP address changes."
keywords = ["cross-platform", "client", "ddns", "ip", "records"]
categories = ["command-line-utilities"]
homepage = "https://github.com/AmonRayfa/wapi"
repository = "https://github.com/AmonRayfa/wapi"
license = "Apache-2.0"
readme = "README.md"
exclude = [
".github/**",
".trunk/**",
"node_modules/**",
"target/**",
".gitignore",
"package.json",
"pnpm-lock.yaml",
]
publish = false
[profile]
dev = { opt-level = 0 }
release = { opt-level = 3 }
[lib]
name = "wapi"
path = "src/lib.rs"
[[bin]]
name = "wapi"
path = "src/main.rs"
[dependencies]
chrono = "0.4"
directories = "5"
mabe = { version = "1", features = ["colorize"] }
reqwest = { version = "0.12", features = ["blocking"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"