1
0
mirror of https://github.com/actix/examples synced 2025-01-23 06:14:35 +01:00
examples/rustls/Cargo.toml

16 lines
290 B
TOML
Raw Normal View History

2018-08-07 22:34:16 -07:00
[package]
name = "rustls-example"
version = "0.1.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
workspace = "../"
[[bin]]
name = "rustls-server"
2018-08-07 22:34:16 -07:00
path = "src/main.rs"
[dependencies]
env_logger = "0.5"
rustls = "0.14"
2018-08-07 22:34:16 -07:00
actix = "0.7"
2018-09-28 18:20:09 +03:00
actix-web = { version = "0.7", features=["rust-tls"] }