limbusart/Cargo.toml

17 lines
509 B
TOML
Raw Normal View History

2023-07-17 02:42:55 +03:00
[package]
2023-07-17 09:01:10 +03:00
name = "limbusart"
2023-07-17 02:42:55 +03:00
version = "0.1.0"
edition = "2021"
[dependencies]
axum = {git = "https://github.com/tokio-rs/axum.git", version = "0.7", features = ["macros"]}
2023-07-17 09:01:10 +03:00
tokio = {version = "1", features = ["rt-multi-thread", "macros"]}
http = "1"
2023-07-17 09:01:10 +03:00
fastrand = {version = "2", features = ["std"]}
reqwest = {version = "0.12", default-features = false, features = ["rustls-tls-native-roots", "json"]}
2023-07-17 09:01:10 +03:00
dashmap = "5"
maud = "0.26"
2023-07-17 13:58:47 +03:00
signal-hook = "0.3"
serde_json = "1"
form_urlencoded = "1"
2024-06-11 05:04:28 +03:00
futures-retry = "0.6"