redsunlib/Cargo.toml

70 lines
1.8 KiB
TOML
Raw Permalink Normal View History

2020-10-25 13:25:59 -07:00
[package]
2024-06-02 22:32:27 +12:00
name = "redsunlib"
description = " Alternative private front-end to Reddit"
2024-08-07 14:09:54 -04:00
license = "AGPL-3.0-only"
repository = "https://git.stardust.wtf/iridium/redsunlib"
2025-01-07 07:28:00 +13:00
version = "0.35.4"
2023-12-27 00:19:54 -05:00
authors = [
"Matthew Esposito <matt+cargo@matthew.science>",
"spikecodes <19519553+spikecodes@users.noreply.github.com>",
]
edition = "2021"
2024-11-03 10:36:46 +13:00
default-run = "redsunlib"
2020-10-25 13:25:59 -07:00
[dependencies]
2024-10-02 23:43:13 +02:00
rinja = { version = "0.3.4", default-features = false }
2024-11-19 11:37:30 -05:00
cached = { version = "0.54.0", features = ["async"] }
2023-12-27 00:19:54 -05:00
clap = { version = "4.4.11", default-features = false, features = [
"std",
"env",
2024-10-21 20:54:05 -04:00
"derive",
2023-12-27 00:19:54 -05:00
] }
2023-12-26 16:12:42 -05:00
regex = "1.10.2"
serde = { version = "1.0.193", features = ["derive"] }
2023-12-26 16:24:53 -05:00
cookie = "0.18.0"
futures-lite = "2.2.0"
2024-11-19 11:08:00 -05:00
hyper = { version = "0.14.31", features = ["full"] }
percent-encoding = "2.3.1"
2021-10-25 21:27:55 -07:00
route-recognizer = "0.3.1"
2024-11-19 11:37:30 -05:00
serde_json = "1.0.133"
tokio = { version = "1.35.1", features = ["full"] }
time = { version = "0.3.31", features = ["local-offset"] }
url = "2.5.0"
rust-embed = { version = "8.1.0", features = ["include-exclude"] }
libflate = "2.0.0"
brotli = { version = "7.0.0", features = ["std"] }
toml = "0.8.8"
once_cell = "1.19.0"
serde_yaml = "0.9.29"
build_html = "2.4.0"
uuid = { version = "1.6.1", features = ["v4"] }
2024-05-29 20:05:56 -04:00
base64 = "0.22.1"
fastrand = "2.0.1"
log = "0.4.20"
2023-06-06 14:33:01 -04:00
pretty_env_logger = "0.5.0"
dotenvy = "0.15.7"
rss = "2.0.7"
2024-06-28 18:14:47 -04:00
arc-swap = "1.7.1"
2024-11-19 11:37:30 -05:00
serde_json_path = "0.7.1"
2024-09-21 15:44:27 -04:00
async-recursion = "1.1.1"
common-words-all = { version = "0.0.2", default-features = false, features = ["english", "one"] }
hyper-rustls = { version = "0.24.2", features = [ "http2" ] }
[dev-dependencies]
lipsum = "0.9.0"
sealed_test = "1.0.0"
[profile.release]
codegen-units = 1
lto = true
2023-01-21 00:35:49 -08:00
strip = "symbols"
2024-10-21 20:54:05 -04:00
[[bin]]
2024-11-03 10:36:46 +13:00
name = "redsunlib"
2024-10-21 20:54:05 -04:00
path = "src/main.rs"
[[bin]]
name = "scraper"
path = "src/scraper/main.rs"