1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/tls/Cargo.toml
Jan Niehusmann 0a2a356e7a replace deprecated feature "alpn" with "ssl" (#56)
In actix-web's Cargo.toml, feature "alpn" is marked as deprecated,
with the suggestion to use "ssl", instead.
2018-10-14 20:30:59 +03:00

16 lines
292 B
TOML

[package]
name = "tls-example"
version = "0.1.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
workspace = "../"
[[bin]]
name = "tls-server"
path = "src/main.rs"
[dependencies]
env_logger = "0.5"
openssl = { version="0.10" }
actix = "0.7"
actix-web = { version = "0.7", features=["ssl"] }