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

15 lines
293 B
TOML
Raw Normal View History

2020-01-26 00:49:19 +01:00
[package]
name = "shutdown-server"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2022-02-02 02:43:51 +01:00
edition = "2021"
2020-01-26 00:49:19 +01:00
description = "Send a request to the server to shut it down"
[dependencies]
2022-02-25 22:07:22 +01:00
actix-web = "4"
2022-08-28 19:41:16 +02:00
actix-web-lab = "0.17"
2022-03-06 01:15:16 +01:00
env_logger = "0.9"
2022-03-06 01:41:32 +01:00
log = "0.4"
parking_lot = "0.12"
2022-07-10 00:35:09 +02:00
tokio = { version = "1.13.1", features = ["signal"] }