redsunlib/Cargo.toml

55 lines
1.4 KiB
TOML
Raw Normal View History

2020-10-26 09:25:59 +13:00
[package]
2023-12-27 12:25:52 +13:00
name = "redlib"
description = " Alternative private front-end to Reddit"
license = "AGPL-3.0"
2023-12-27 12:25:52 +13:00
repository = "https://github.com/redlib-org/redlib"
2024-06-30 05:28:18 +12:00
version = "0.35.1"
2023-12-27 18:19:54 +13:00
authors = [
"Matthew Esposito <matt+cargo@matthew.science>",
"spikecodes <19519553+spikecodes@users.noreply.github.com>",
]
edition = "2021"
2020-10-26 09:25:59 +13:00
[dependencies]
askama = { version = "0.12.1", default-features = false }
2024-05-30 12:05:56 +12:00
cached = { version = "0.51.3", features = ["async"] }
2023-12-27 18:19:54 +13:00
clap = { version = "4.4.11", default-features = false, features = [
"std",
"env",
] }
2023-12-27 10:12:42 +13:00
regex = "1.10.2"
serde = { version = "1.0.193", features = ["derive"] }
2023-12-27 10:24:53 +13:00
cookie = "0.18.0"
futures-lite = "2.2.0"
hyper = { version = "0.14.28", features = ["full"] }
hyper-rustls = "0.25.0"
percent-encoding = "2.3.1"
2021-10-26 17:27:55 +13:00
route-recognizer = "0.3.1"
serde_json = "1.0.108"
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"
2024-05-30 12:05:56 +12:00
brotli = { version = "6.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-30 12:05:56 +12:00
base64 = "0.22.1"
fastrand = "2.0.1"
log = "0.4.20"
2023-06-07 06:33:01 +12:00
pretty_env_logger = "0.5.0"
dotenvy = "0.15.7"
2024-06-29 10:14:47 +12:00
arc-swap = "1.7.1"
[dev-dependencies]
lipsum = "0.9.0"
sealed_test = "1.0.0"
[profile.release]
codegen-units = 1
lto = true
2023-01-21 21:35:49 +13:00
strip = "symbols"