-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (48 loc) · 1.12 KB
/
Cargo.toml
File metadata and controls
53 lines (48 loc) · 1.12 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
48
49
50
51
52
53
[package]
name = "bindizr"
version = "0.1.0-beta.3"
edition = "2024"
authors = ["kweonminsung"]
description = "DNS Synchronization Service for BIND9"
repository = "https://github.com/kweonminsung/bindizr"
license = "Apache-2.0"
keywords = ["DNS", "BIND9", "CLI", "XFR"]
[lib]
name = "bindizr"
path = "src/lib.rs"
[[bin]]
name = "bindizr"
path = "src/main.rs"
[profile.release]
panic = "unwind"
[dependencies]
tokio = { version = "1", features = ["full"] }
axum = "0.8.8"
axum-macros = "0.5.0"
tower-http = { version = "0.6.8", features = ["cors"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
tabled = "0.17"
config = "0.15.19"
once_cell = "1.21.3"
async-trait = "0.1.88"
log = { version = "0.4", features = ["std"] }
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.6.0", features = ["derive"] }
sqlx = { version = "0.8", features = [
"runtime-tokio",
"mysql",
"postgres",
"sqlite",
"chrono",
] }
domain = "0.10"
rand = "0.9"
sha2 = "0.10"
hex = "0.4"
thiserror = "2.0.18"
[dev-dependencies]
tempfile = "3.24.0"
tower = "0.5"
tower-service = "0.3"