1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/https-tls/cert-watch/Cargo.toml

16 lines
376 B
TOML
Raw Permalink Normal View History

2024-02-06 03:50:23 +01:00
[package]
name = "cert-watch"
version = "1.0.0"
edition = "2021"
[dependencies]
2024-05-25 06:36:36 +02:00
actix-web = { workspace = true, features = ["rustls-0_23"] }
2024-02-06 03:50:23 +01:00
color-eyre.workspace = true
env_logger.workspace = true
eyre.workspace = true
log.workspace = true
notify = "6"
rustls.workspace = true
2024-05-25 06:36:36 +02:00
rustls-pemfile.workspace = true
2024-02-06 23:12:55 +01:00
tokio = { workspace = true, features = ["time", "rt", "macros"] }