-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (35 loc) · 1.3 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
[package]
name = "mimir"
version = "0.1.0"
edition = "2021"
license = "MPL-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bytes = { version = "1.0" }
clap = { version = "=4.3.12", features = ["derive"] }
clap_lex = "=0.5.0"
anstyle = "=1.0.1"
time = "=0.3.23"
domain = { version = "0.10.1-dev", git = "https://github.com/NLnetLabs/domain.git", features = [ "net", "unstable-client-transport", "unstable-server-transport", "unstable-zonetree", "unstable-validator", "zonefile", "tokio-rustls", "tokio-stream" ] }
futures = { version = "0.3" }
futures-util = "0.3"
octseq = "0.2"
#rustls = "0.26"
serde = { version = "1.0.188", features = ["derive" ] }
serde_json = "1.0.107"
serde_yaml = "0.9.25"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
tokio-rustls = "0.26"
webpki-roots = "0.26"
toml = "0.8.19"
serde-aux = "4.5.0"
rustls-pemfile = "2.2.0"
winapi = "^0.3"
# Work around for error when compiling on MacOS:
# error[E0433]: failed to resolve: use of undeclared crate or module `syntax`
[target.'cfg(target_os = "macos")'.dependencies]
regex = "1.7.1"
# Work around for errors when compiling on Windows:
[target.'cfg(windows)'.dependencies]
# error: couldn't determine visual studio generator
cc = "1.2"