35 lines
722 B
TOML
35 lines
722 B
TOML
[package]
|
|
name = "twitter-monitor"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
# HTTP client
|
|
reqwest = { version = "0.11", features = ["json", "rustls-tls"] }
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
config = "0.13"
|
|
log = "0.4"
|
|
env_logger = "0.10"
|
|
|
|
# Web framework
|
|
actix-web = { version = "4.0", default-features = false, features = ["rustls"] }
|
|
actix-rt = "2.0"
|
|
actix-cors = "0.6"
|
|
actix-files = "0.6"
|
|
actix = "0.13"
|
|
actix-web-actors = "4.0"
|
|
|
|
# Other
|
|
futures = "0.3"
|
|
regex = "1.0"
|
|
|
|
# Datetime handling
|
|
chrono = "0.4"
|
|
|
|
# URL utilities
|
|
urlencoding = "2.1"
|