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

19 lines
305 B
TOML
Raw Normal View History

2018-08-07 22:34:16 -07:00
[package]
name = "rustls-example"
2019-12-07 23:59:24 +06:00
version = "1.0.0"
2022-01-30 16:22:16 +00:00
edition = "2021"
2018-08-07 22:34:16 -07:00
[[bin]]
name = "rustls-server"
2018-08-07 22:34:16 -07:00
path = "src/main.rs"
[dependencies]
2022-02-25 21:07:22 +00:00
actix-web = { version = "4", features = ["rustls"] }
2022-07-09 20:48:05 +01:00
actix-web-lab = "0.16"
2022-02-25 21:07:22 +00:00
actix-files = "0.6"
2022-03-15 18:17:19 +00:00
env_logger = "0.9"
log = "0.4"
rustls = "0.20.2"
2022-07-09 22:54:51 +01:00
rustls-pemfile = "1"