preciazo/rust/Cargo.toml

48 lines
1.1 KiB
TOML
Raw Normal View History

2023-12-31 15:52:32 +00:00
[package]
2024-06-30 00:04:59 +00:00
name = "preciazo"
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-06-30 00:04:59 +00:00
chrono = "0.4"
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-07-13 15:43:24 +00:00
sqlx = { version = "0.7", features = [ "runtime-tokio", "sqlite", "chrono", "postgres" ] }
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-06-23 00:28:18 +00:00
rand = "0.8"
reqwest = { version = "0.12", default-features = false, features = [
2023-12-31 15:52:32 +00:00
"rustls-tls",
"gzip",
"brotli",
2024-01-11 00:44:35 +00:00
"socks",
2024-06-23 00:28:18 +00:00
"json",
2023-12-31 15:52:32 +00:00
] }
2024-01-02 01:31:57 +00:00
rusqlite = "0.30.0"
2024-06-30 00:04:59 +00:00
serde = { version = "1.0", features = ["derive"] }
2024-01-02 01:31:57 +00:00
serde_json = "1.0.109"
2024-01-11 00:44:35 +00:00
simple-error = "0.3.0"
thiserror = "1.0.56"
2024-06-30 00:04:59 +00:00
tl = "0.7.8"
tokio = { version = "1.35", features = ["full"] }
2024-01-11 00:44:35 +00:00
tracing = "0.1"
2024-06-30 00:04:59 +00:00
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
axum = "0.7.5"
2024-07-13 15:43:24 +00:00
dotenvy = "0.15.7"
2024-06-30 00:04:59 +00:00
[[bin]]
name = "api"
path = "src/api/main.rs"
[[bin]]
name = "scraper"
path = "src/scraper/main.rs"