aboutsummaryrefslogtreecommitdiffhomepage
path: root/pingora-openssl/Cargo.toml
blob: b2cc180230c0c84e6462f0668d1804e1649162c0 (plain)
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
[package]
name = "pingora-openssl"
version = "0.1.2"
authors = ["Yuchen Wu <yuchen@cloudflare.com>"]
license = "Apache-2.0"
edition = "2021"
repository = "https://github.com/cloudflare/pingora"
categories = ["asynchronous", "network-programming"]
keywords = ["async", "tls", "ssl", "pingora"]
description = """
OpenSSL async APIs for Pingora.
"""

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "pingora_openssl"
path = "src/lib.rs"

[dependencies]
openssl-sys = "0.9"
openssl = { version = "0.10", features = ["vendored"] }
openssl-src = { version = "300", features = ["weak-crypto"] }
tokio-openssl = { version = "0.6" }
libc = "0.2.70"
foreign-types = { version = "0.3"}

[dev-dependencies]
tokio-test = "0.4"
tokio = { workspace = true, features = ["full"] }