-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (38 loc) · 1.12 KB
/
Cargo.toml
File metadata and controls
43 lines (38 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
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "arnelify_server"
description = "Multi-language server with HTTP 3.0 and WebTransport support."
keywords = ["arnelify", "server", "quic", "http3", "webtransport"]
version = "0.9.8"
authors = ["Arnelify", "Taron Sarkisyan"]
license = "MIT"
repository = "http://github.com/arnelify/arnelify-server-python"
edition = "2024"
[lib]
name = "arnelify_server"
crate-type = ["cdylib"]
[dependencies]
anyhow = "1.0.100"
brotli = "8.0.2"
bytes = "1.11.0"
futures-util = "0.3.31"
h2 = "0.4.12"
h3 = "0.0.8"
h3-quinn = "0.0.10"
http = "1.3.1"
libloading = "0.9.0"
pyo3 = "0.27.0"
quinn = "0.11.9"
rustls = { version = "0.23.35", features = ["aws_lc_rs"] }
rustls-pemfile = "1.0.4" # "2.2.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
tokio = { version = "1.48.0", features = ["full"] }
tokio-rustls = "0.24" # "0.26.4"
tokio-tungstenite = "0.28"
tungstenite = "0.28"
wtransport = { version = "0.6.1", features = ["dangerous-configuration"] }
[profile.dev]
opt-level = 1
[profile.release]
opt-level = 3