2020-10-26 09:25:59 +13:00
|
|
|
[package]
|
2020-10-26 17:06:05 +13:00
|
|
|
name = "libreddit"
|
2020-10-26 17:09:06 +13:00
|
|
|
description = " Alternative private front-end to Reddit"
|
|
|
|
license = "AGPL-3.0"
|
|
|
|
repository = "https://github.com/spikecodes/libreddit"
|
2023-01-03 22:40:44 +13:00
|
|
|
version = "0.26.0"
|
2020-10-26 09:25:59 +13:00
|
|
|
authors = ["spikecodes <19519553+spikecodes@users.noreply.github.com>"]
|
2021-12-27 18:18:20 +13:00
|
|
|
edition = "2021"
|
2020-10-26 09:25:59 +13:00
|
|
|
|
|
|
|
[dependencies]
|
2022-03-14 08:06:27 +13:00
|
|
|
askama = { version = "0.11.1", default-features = false }
|
2022-11-01 16:23:59 +13:00
|
|
|
cached = "0.40.0"
|
2022-11-15 15:08:44 +13:00
|
|
|
clap = { version = "4.0.24", default-features = false, features = ["std"] }
|
|
|
|
regex = "1.7.0"
|
2022-11-01 16:23:59 +13:00
|
|
|
serde = { version = "1.0.147", features = ["derive"] }
|
|
|
|
cookie = "0.16.1"
|
2021-06-12 06:03:36 +12:00
|
|
|
futures-lite = "1.12.0"
|
2022-11-15 15:08:44 +13:00
|
|
|
hyper = { version = "0.14.23", features = ["full"] }
|
2021-11-22 19:30:44 +13:00
|
|
|
hyper-rustls = "0.23.0"
|
2022-11-01 16:23:59 +13:00
|
|
|
percent-encoding = "2.2.0"
|
2021-10-26 17:27:55 +13:00
|
|
|
route-recognizer = "0.3.1"
|
2022-11-01 16:23:59 +13:00
|
|
|
serde_json = "1.0.87"
|
|
|
|
tokio = { version = "1.21.2", features = ["full"] }
|
2022-11-15 15:08:44 +13:00
|
|
|
time = "0.3.17"
|
2022-11-01 16:23:59 +13:00
|
|
|
url = "2.3.1"
|
|
|
|
rust-embed = { version = "6.4.2", features = ["include-exclude"] }
|
2022-11-04 17:04:34 +13:00
|
|
|
libflate = "1.2.0"
|
|
|
|
brotli = { version = "3.3.4", features = ["std"] }
|
2023-01-03 22:55:22 +13:00
|
|
|
toml = "0.5.9"
|
2023-01-01 16:57:42 +13:00
|
|
|
once_cell = "1.16.0"
|
2022-11-04 17:04:34 +13:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
lipsum = "0.8.2"
|
2023-01-03 22:55:22 +13:00
|
|
|
sealed_test = "1.0.0"
|
2023-01-02 10:33:31 +13:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
codegen-units = 1
|
|
|
|
lto = true
|
2023-01-02 19:54:35 +13:00
|
|
|
strip = true
|