1
0
mirror of https://github.com/actix/examples synced 2024-11-28 00:12:57 +01:00
examples/https-tls/rustls-client-cert/Cargo.toml

13 lines
234 B
TOML
Raw Normal View History

2020-10-30 05:22:24 +01:00
[package]
name = "rustls-client-cert"
version = "1.0.0"
2022-02-02 02:43:51 +01:00
edition = "2021"
2020-10-30 05:22:24 +01:00
[dependencies]
2022-01-29 17:51:49 +01:00
actix-tls = "3.0"
2022-02-25 22:07:22 +01:00
actix-web = { version = "4", features = ["rustls"] }
2022-01-29 17:51:49 +01:00
env_logger = "0.9"
2020-10-30 05:22:24 +01:00
log = "0.4"
2022-01-29 17:51:49 +01:00
rustls = "0.20.2"
2022-02-02 01:44:58 +01:00
rustls-pemfile = "0.2.1"