-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathCargo.toml
29 lines (27 loc) · 954 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
[workspace]
members = [
# FFI bindings for Rustls
"librustls",
# Admin tooling & test utilities for rustls-ffi developers
"tools"
]
default-members = [
"librustls",
]
resolver = "2"
[workspace.dependencies]
rustls = { version = "0.23", default-features = false, features = ["std", "tls12"] }
webpki = { package = "rustls-webpki", version = "0.102.0", default-features = false, features = ["std"] }
libc = "0.2"
log = "0.4.22"
rustls-platform-verifier = "0.5"
rand = "0.8"
regex = "1.9.6"
toml = { version = "0.6.0", default-features = false, features = ["parse"] }
hickory-resolver = { version = "=0.25.0-alpha.4", features = ["dns-over-https-rustls", "webpki-roots"] }
tokio = { version = "1.43.0", features = ["io-util", "macros", "net", "rt"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tree-sitter = "0.23" # TODO(@cpu): handle breaking API changes for 0.24
tree-sitter-c = "0.23"
tree-sitter-md = "0.3"