2020-10-25 13:25:59 -07:00
|
|
|
[package]
|
2020-10-25 21:06:05 -07:00
|
|
|
name = "libreddit"
|
2020-10-25 21:09:06 -07:00
|
|
|
description = " Alternative private front-end to Reddit"
|
|
|
|
license = "AGPL-3.0"
|
|
|
|
repository = "https://github.com/spikecodes/libreddit"
|
2023-02-26 03:01:35 -07:00
|
|
|
version = "0.29.4"
|
2020-10-25 13:25:59 -07:00
|
|
|
authors = ["spikecodes <19519553+spikecodes@users.noreply.github.com>"]
|
2021-12-26 21:18:20 -08:00
|
|
|
edition = "2021"
|
2020-10-25 13:25:59 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2022-03-13 13:06:27 -06:00
|
|
|
askama = { version = "0.11.1", default-features = false }
|
2023-01-16 11:09:57 -08:00
|
|
|
cached = "0.42.0"
|
|
|
|
clap = { version = "4.1.1", default-features = false, features = ["std", "env"] }
|
|
|
|
regex = "1.7.1"
|
|
|
|
serde = { version = "1.0.152", features = ["derive"] }
|
|
|
|
cookie = "0.16.2"
|
2021-06-11 11:03:36 -07:00
|
|
|
futures-lite = "1.12.0"
|
2022-11-14 18:08:44 -08:00
|
|
|
hyper = { version = "0.14.23", features = ["full"] }
|
2023-01-16 11:09:57 -08:00
|
|
|
hyper-rustls = "0.23.2"
|
2022-10-31 20:23:59 -07:00
|
|
|
percent-encoding = "2.2.0"
|
2021-10-25 21:27:55 -07:00
|
|
|
route-recognizer = "0.3.1"
|
2023-01-16 11:09:57 -08:00
|
|
|
serde_json = "1.0.91"
|
2023-01-21 00:35:49 -08:00
|
|
|
tokio = { version = "1.24.2", features = ["full"] }
|
2023-01-30 04:02:43 -05:00
|
|
|
time = { version = "0.3.17", features = ["local-offset"] }
|
2022-10-31 20:23:59 -07:00
|
|
|
url = "2.3.1"
|
|
|
|
rust-embed = { version = "6.4.2", features = ["include-exclude"] }
|
2022-11-03 22:04:34 -06:00
|
|
|
libflate = "1.2.0"
|
|
|
|
brotli = { version = "3.3.4", features = ["std"] }
|
2023-01-16 11:09:57 -08:00
|
|
|
toml = "0.5.10"
|
|
|
|
once_cell = "1.17.0"
|
2023-01-30 04:02:43 -05:00
|
|
|
serde_yaml = "0.9.16"
|
|
|
|
build_html = "2.2.0"
|
2022-11-03 22:04:34 -06:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
lipsum = "0.8.2"
|
2023-01-03 04:55:22 -05:00
|
|
|
sealed_test = "1.0.0"
|
2023-01-01 22:33:31 +01:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
codegen-units = 1
|
|
|
|
lto = true
|
2023-01-21 00:35:49 -08:00
|
|
|
strip = "symbols"
|