redsunlib/Cargo.toml

22 lines
790 B
TOML
Raw Normal View History

2020-10-26 09:25:59 +13:00
[package]
2020-10-26 17:06:05 +13:00
name = "libreddit"
description = " Alternative private front-end to Reddit"
license = "AGPL-3.0"
repository = "https://github.com/spikecodes/libreddit"
2021-03-04 06:35:40 +13:00
version = "0.3.1"
2020-10-26 09:25:59 +13:00
authors = ["spikecodes <19519553+spikecodes@users.noreply.github.com>"]
edition = "2018"
[dependencies]
2021-02-17 08:39:56 +13:00
tide = { version = "0.16.0", default-features = false, features = ["h1-server", "cookies"] }
2021-02-16 11:09:45 +13:00
async-std = { version = "1.9.0", features = ["attributes"] }
2021-03-10 19:13:46 +13:00
async-tls = { version = "0.11.0", default-features = false, features = ["client"] }
2021-02-16 11:09:45 +13:00
cached = "0.23.0"
2021-02-25 17:26:12 +13:00
askama = { version = "0.10.5", default-features = false }
2021-03-09 13:30:34 +13:00
serde = { version = "1.0.124", features = ["derive"] }
serde_json = "1.0.64"
2021-02-16 11:09:45 +13:00
async-recursion = "0.3.2"
regex = "1.4.3"
2021-02-25 17:26:12 +13:00
clap = { version = "2.33.3", default-features = false }
2021-02-16 11:09:45 +13:00
time = "0.2.25"