-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 1.06 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
[package]
name = "compio-ktls"
version = "0.1.0"
edition = "2024"
description = "Kernel TLS (kTLS) support for Compio"
repository = "https://github.com/compio-rs/compio-ktls"
license = "Apache-2.0 OR MulanPSL-2.0"
authors = ["Fantix King <fantix.king@gmail.com>"]
keywords = ["ktls", "tls", "compio", "async", "kernel"]
categories = ["asynchronous", "network-programming", "cryptography"]
readme = "README.md"
[dependencies]
compio-io = { version = "0.10.0-rc.1", default-features = false, features = ["ancillary", "bytemuck"]}
compio-buf = { version = "0.8.2-rc.1", default-features = false }
rustls = { version = "0.23", default-features = false, optional = true }
synchrony = { version = "0.1", features = ["bilock"] }
[target."cfg(target_os = \"linux\")".dependencies]
libc = "0.2"
ktls-core = "0.0.5"
[features]
default = ["rustls"]
rustls = ["dep:rustls", "ktls-core/shim-rustls"]
ring = ["rustls", "rustls/ring"]
sync = []
[dev-dependencies]
compio = { version = "0.19.0-rc.1", features = ["net", "rustls", "macros"] }
rustls-native-certs = "0.8"
rustls-pemfile = "2.2"