mirror of
https://github.com/catdevnull/preciazo.git
synced 2024-11-26 03:26:19 +00:00
47 lines
1.1 KiB
TOML
47 lines
1.1 KiB
TOML
[package]
|
|
name = "preciazo"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
again = "0.1.2"
|
|
anyhow = "1.0.79"
|
|
base64 = "0.21.7"
|
|
chrono = "0.4"
|
|
clap = { version = "4.4.15", features = ["derive"] }
|
|
cron = "0.12.0"
|
|
sqlx = { version = "0.7", features = [ "runtime-tokio", "sqlite", "chrono", "postgres" ] }
|
|
futures = "0.3.30"
|
|
html-escape = "0.2.13"
|
|
itertools = "0.12.0"
|
|
nanoid = "0.4.0"
|
|
quick-xml = "0.31.0"
|
|
rand = "0.8"
|
|
reqwest = { version = "0.12", default-features = false, features = [
|
|
"rustls-tls",
|
|
"gzip",
|
|
"brotli",
|
|
"socks",
|
|
"json",
|
|
] }
|
|
rusqlite = "0.30.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0.109"
|
|
simple-error = "0.3.0"
|
|
thiserror = "1.0.56"
|
|
tl = "0.7.8"
|
|
tokio = { version = "1.35", features = ["full"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
axum = "0.7.5"
|
|
dotenvy = "0.15.7"
|
|
|
|
[[bin]]
|
|
name = "api"
|
|
path = "src/api/main.rs"
|
|
|
|
[[bin]]
|
|
name = "scraper"
|
|
path = "src/scraper/main.rs"
|