axum/examples/tls-rustls/Cargo.toml
programatik29 1a5f977896
Simplify tls-rustls example (#254)
## Motivation

Current `tls-rustls` example might be inconvenient for some people.

## Solution

Rename current example to `low-level-rustls` and add a high level example in its place.
2021-08-24 09:56:31 +02:00

12 lines
282 B
TOML

[package]
name = "example-tls-rustls"
version = "0.1.0"
edition = "2018"
publish = false
[dependencies]
axum = { path = "../.." }
axum-server = { version = "0.1", features = ["tls-rustls"] }
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = "0.2"