libreddit/Cargo.toml

23 lines
606 B
TOML
Raw Normal View History

2020-10-25 20:25:59 +00:00
[package]
2020-10-26 04:06:05 +00:00
name = "libreddit"
description = " Alternative private front-end to Reddit"
license = "AGPL-3.0"
repository = "https://github.com/spikecodes/libreddit"
2020-12-01 05:10:08 +00:00
version = "0.1.9"
2020-10-25 20:25:59 +00:00
authors = ["spikecodes <19519553+spikecodes@users.noreply.github.com>"]
edition = "2018"
2020-11-24 00:57:37 +00:00
[features]
default = ["proxy"]
proxy = ["actix-web/rustls", "base64"]
2020-11-24 00:57:37 +00:00
2020-10-25 20:25:59 +00:00
[dependencies]
base64 = { version = "0.13.0", optional = true }
2020-11-24 00:57:37 +00:00
actix-web = "3.2.0"
2020-12-01 04:57:15 +00:00
reqwest = { version = "0.10", default_features = false, features = ["rustls-tls"] }
2020-11-17 04:36:36 +00:00
askama = "0.8.0"
2020-10-26 03:30:34 +00:00
serde = "1.0.117"
2020-10-25 20:25:59 +00:00
serde_json = "1.0"
2020-10-26 02:55:00 +00:00
pulldown-cmark = "0.8.0"
2020-11-17 04:36:36 +00:00
chrono = "0.4.19"