2023-05-07 21:41:45 +00:00
|
|
|
[package]
|
2023-05-10 04:00:48 +00:00
|
|
|
name = "crawlnicle"
|
2023-05-07 21:41:45 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2024-07-27 17:55:08 +00:00
|
|
|
default-run = "web"
|
2023-06-27 18:03:52 +00:00
|
|
|
authors = ["Tyler Hallada <tyler@hallada.net>"]
|
2023-05-09 04:08:55 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "lib"
|
|
|
|
path = "src/lib.rs"
|
2023-05-07 21:41:45 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-05-09 04:32:08 +00:00
|
|
|
ammonia = "4"
|
2023-12-20 05:25:28 +00:00
|
|
|
ansi-to-html = "0.2"
|
2023-05-07 21:41:45 +00:00
|
|
|
anyhow = "1"
|
2024-08-21 05:10:26 +00:00
|
|
|
# apalis v0.6 fixes this issue: https://github.com/geofmureithi/apalis/issues/351
|
|
|
|
apalis = { version = "0.6.0-rc.5", features = ["retry"] }
|
|
|
|
apalis-cron = "0.6.0-rc.5"
|
|
|
|
apalis-redis = "0.6.0-rc.5"
|
2023-12-20 05:25:28 +00:00
|
|
|
async-trait = "0.1"
|
|
|
|
axum = { version = "0.7", features = ["form", "multipart", "query"] }
|
2024-05-09 04:32:08 +00:00
|
|
|
axum-client-ip = "0.6"
|
2023-12-20 05:25:28 +00:00
|
|
|
axum-extra = { version = "0.9", features = ["typed-header"] }
|
2024-05-09 04:32:08 +00:00
|
|
|
axum-login = "0.15"
|
|
|
|
base64 = "0.22"
|
2023-06-03 23:03:58 +00:00
|
|
|
bytes = "1.4"
|
2023-12-20 05:25:28 +00:00
|
|
|
# TODO: replace chrono with time
|
2023-05-07 21:41:45 +00:00
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
2023-09-25 05:35:26 +00:00
|
|
|
clap = { version = "4.4", features = ["derive", "env"] }
|
2023-05-07 21:41:45 +00:00
|
|
|
dotenvy = "0.15"
|
2023-05-10 03:46:42 +00:00
|
|
|
feed-rs = "1.3"
|
2024-08-26 05:12:18 +00:00
|
|
|
fred = "9"
|
2023-07-23 02:54:57 +00:00
|
|
|
futures = "0.3"
|
2023-12-20 05:25:28 +00:00
|
|
|
headers = "0.4"
|
|
|
|
http = "1.0.0"
|
2023-10-13 12:07:38 +00:00
|
|
|
ipnetwork = "0.20"
|
2023-12-20 05:25:28 +00:00
|
|
|
lettre = { version = "0.11", features = ["builder"] }
|
|
|
|
# waiting for new maud release which will support axum v. 0.7+: https://github.com/lambda-fairy/maud/pull/401
|
|
|
|
maud = { git = "https://github.com/vidhanio/maud", branch = "patch-1", features = [
|
|
|
|
"axum",
|
|
|
|
] }
|
2023-06-01 04:59:46 +00:00
|
|
|
notify = "6"
|
2023-09-25 05:35:26 +00:00
|
|
|
once_cell = "1.18"
|
2023-07-23 02:54:57 +00:00
|
|
|
opml = "1.1"
|
2023-12-20 05:25:28 +00:00
|
|
|
password-auth = "1.0"
|
2024-08-26 05:12:18 +00:00
|
|
|
rand = { version = "0.8", features = ["small_rng"] }
|
2024-05-09 04:32:08 +00:00
|
|
|
readability = "0.3"
|
|
|
|
reqwest = { version = "0.12", features = ["json"] }
|
2023-05-07 21:41:45 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2023-05-07 22:20:19 +00:00
|
|
|
serde_with = "3"
|
2023-07-06 01:14:31 +00:00
|
|
|
sqlx = { version = "0.7", features = [
|
2024-01-03 05:07:41 +00:00
|
|
|
"runtime-tokio",
|
2023-05-09 04:08:55 +00:00
|
|
|
"postgres",
|
|
|
|
"macros",
|
|
|
|
"migrate",
|
|
|
|
"chrono",
|
2023-06-27 18:03:52 +00:00
|
|
|
"uuid",
|
2023-10-13 12:07:38 +00:00
|
|
|
"ipnetwork",
|
2023-05-09 04:08:55 +00:00
|
|
|
] }
|
2023-05-07 22:20:19 +00:00
|
|
|
thiserror = "1"
|
2023-12-20 05:25:28 +00:00
|
|
|
time = "0.3"
|
2023-05-07 21:41:45 +00:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2023-06-03 23:03:58 +00:00
|
|
|
tokio-stream = { version = "0.1", features = ["sync"] }
|
2023-05-07 21:41:45 +00:00
|
|
|
tower = "0.4"
|
2023-12-20 05:25:28 +00:00
|
|
|
tower-livereload = "0.9"
|
|
|
|
tower-http = { version = "0.5", features = ["trace", "fs"] }
|
2024-05-09 04:32:08 +00:00
|
|
|
tower-sessions = { version = "0.12", features = ["signed"] }
|
|
|
|
tower-sessions-redis-store = "0.12"
|
2023-07-10 01:18:19 +00:00
|
|
|
tracing = { version = "0.1", features = ["valuable", "attributes"] }
|
2023-06-03 05:09:25 +00:00
|
|
|
tracing-appender = "0.2"
|
2023-05-10 03:46:42 +00:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
2023-09-25 05:35:26 +00:00
|
|
|
uuid = { version = "1.4", features = ["serde"] }
|
2023-06-27 18:03:52 +00:00
|
|
|
url = "2.4"
|
2024-05-09 04:32:08 +00:00
|
|
|
validator = { version = "0.18", features = ["derive"] }
|
2023-10-20 03:12:31 +00:00
|
|
|
|
|
|
|
[profile.dev.package.sqlx-macros]
|
|
|
|
opt-level = 3
|