forked from aiortc/aioquic
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
43 lines (38 loc) · 1.16 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
40
41
42
43
[package]
name = "qh3"
version = "1.2.1"
edition = "2021"
rust-version = "1.75"
license = "BSD-3"
homepage = "https://github.com/jawah/qh3"
repository = "https://github.com/jawah/qh3.git"
readme = "README.rst"
[lib]
name = "qh3"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.20.3", features = ["extension-module", "abi3-py37", "generate-import-lib"] }
ls-qpack = "0.1.4"
rustls = "0.23.12"
x509-parser = "0.16.0"
rsa = { version = "0.9.6", features = ["sha2", "pem", "getrandom"] }
dsa = "0.6.3"
ed25519-dalek = { version = "2.1.1", features = ["pkcs8"] }
rand = "0.8.5"
chacha20poly1305 = "0.10.1"
pkcs8 = { version = "0.10.2", features = ["encryption", "pem"] }
pkcs1 = { version = "0.7.5", features = ["pem"] }
rustls-pemfile = "2.1.2"
aws-lc-rs = { version = "1.9.0", features=["bindgen", "unstable"], default-features = false }
x509-ocsp = { version = "0.2.1", features = ["builder"] }
x509-cert = "0.2.5"
der = "0.7.9"
sha1 = { version = "0.10.6", features = ["oid"] }
[patch.crates-io]
ls-qpack = { git = 'https://github.com/Ousret/ls-qpack-rs.git' }
[package.metadata.maturin]
python-source = "qh3"
[profile.release]
lto = "fat"
codegen-units = 1
strip = true