File: Cargo.toml

package info (click to toggle)
pdns-recursor 5.3.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,108 kB
  • sloc: cpp: 109,497; javascript: 20,651; python: 5,657; sh: 5,068; makefile: 780; ansic: 582; xml: 37
file content (34 lines) | stat: -rw-r--r-- 954 bytes parent folder | download
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
[package]
name = "recrust"
# Convention: major/minor is equal to rec's major/minor
version = "5.3.0"
edition = "2021"

[lib]
name = "recrust"
crate-type = ["staticlib"]

[dependencies]
cxx = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = { version = "0.9.34" }
ipnet = "2.8"
once_cell = "1.18.0"
base64 = "0.22"
hyper = { version = "1", features = ["server", "http1"]}
tokio = { version = "1" , features = ["rt", "net"]}
http-body-util = "0.1"
hyper-util = { version = "0.1", features = ["tokio"]}
bytes = "1.8"
form_urlencoded = "1.2"
hyper-rustls = { version = "0.27",  default-features = false }
ring = "0.17.13"
rustls = { version = "0.23", default-features = false, features = ["ring"] }
rustls-pemfile = "2.2"
pki-types = { package = "rustls-pki-types", version = "1.10" }
tokio-rustls = { version = "0.26", default-features = false }
uuid = { version = "1.11.0", features = ["v4"] }

[build-dependencies]
cxx-build = "1.0"