mirror of
https://github.com/actix/examples
synced 2024-11-23 22:41:07 +01:00
15 lines
272 B
TOML
15 lines
272 B
TOML
|
[package]
|
||
|
name = "tls-example"
|
||
|
version = "0.1.0"
|
||
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||
|
|
||
|
[[bin]]
|
||
|
name = "server"
|
||
|
path = "src/main.rs"
|
||
|
|
||
|
[dependencies]
|
||
|
env_logger = "0.5"
|
||
|
actix = "0.5"
|
||
|
actix-web = { version = "^0.5", features=["alpn"] }
|
||
|
openssl = { version="0.10" }
|