mirror of
https://github.com/actix/examples
synced 2024-11-24 06:43:00 +01:00
18 lines
341 B
TOML
18 lines
341 B
TOML
[package]
|
|
name = "tls-example"
|
|
version = "0.2.0"
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
edition = "2018"
|
|
workspace = ".."
|
|
|
|
[[bin]]
|
|
name = "tls-server"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
env_logger = "0.5"
|
|
openssl = { version="0.10" }
|
|
|
|
actix-rt = "0.2"
|
|
actix-web = { git="https://github.com/actix/actix-web.git", features=["ssl"] }
|