preciazo/scraper-rs/Cargo.toml

37 lines
946 B
TOML
Raw Normal View History

2023-12-31 15:52:32 +00:00
[package]
2024-01-11 00:46:10 +00:00
name = "scraper-rs"
2023-12-31 15:52:32 +00:00
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-01-11 00:44:35 +00:00
again = "0.1.2"
anyhow = "1.0.79"
2024-01-29 15:06:35 +00:00
base64 = "0.21.7"
2024-01-24 21:26:40 +00:00
chrono = "0.4.32"
2024-01-11 17:02:02 +00:00
clap = { version = "4.4.15", features = ["derive"] }
2024-01-24 21:26:40 +00:00
cron = "0.12.0"
2024-01-30 13:52:31 +00:00
sqlx = { version = "0.7", features = [ "runtime-tokio", "sqlite" ] }
2024-01-12 13:06:44 +00:00
futures = "0.3.30"
2024-01-25 19:49:31 +00:00
html-escape = "0.2.13"
2024-01-12 12:47:56 +00:00
itertools = "0.12.0"
2024-01-11 00:44:35 +00:00
nanoid = "0.4.0"
quick-xml = "0.31.0"
2024-01-11 00:44:35 +00:00
rand = "0.8.5"
2023-12-31 15:52:32 +00:00
reqwest = { version = "0.11.23", default-features = false, features = [
"rustls-tls",
"gzip",
"brotli",
2024-01-11 00:44:35 +00:00
"socks",
2023-12-31 15:52:32 +00:00
] }
2024-01-02 01:31:57 +00:00
rusqlite = "0.30.0"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.109"
2024-01-11 00:44:35 +00:00
simple-error = "0.3.0"
thiserror = "1.0.56"
2024-01-12 02:46:40 +00:00
tl = { git = "https://github.com/evertedsphere/tl", branch = "patch-1" }
2023-12-31 15:52:32 +00:00
tokio = { version = "1.35.1", features = ["full"] }
2024-01-11 00:44:35 +00:00
tracing = "0.1"
tracing-subscriber = "0.3"