Add low level OpenSSL example (#1828)

Co-authored-by: David Pedersen <[email protected]>
This commit is contained in:
Firstyear
2023-03-10 08:51:45 +00:00
committed by GitHub
co-authored by David Pedersen
parent 2c1dde7c07
commit e7eda0e416
4 changed files with 154 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
[package]
name = "example-low-level-openssl"
version = "0.1.0"
edition = "2021"
publish = false
[dependencies]
axum = { path = "../../axum" }
futures-util = "0.3"
hyper = { version = "0.14", features = ["full"] }
openssl = "0.10"
tokio = { version = "1", features = ["full"] }
tokio-openssl = "0.6"
tower = { version = "0.4", features = ["make"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }