redlib/Cargo.toml

23 lines
802 B
TOML
Raw Normal View History

2020-10-25 13:25:59 -07:00
[package]
2020-10-25 21:06:05 -07:00
name = "libreddit"
description = " Alternative private front-end to Reddit"
license = "AGPL-3.0"
repository = "https://github.com/spikecodes/libreddit"
2021-01-31 18:50:31 -08:00
version = "0.2.9"
2020-10-25 13:25:59 -07:00
authors = ["spikecodes <19519553+spikecodes@users.noreply.github.com>"]
edition = "2018"
[dependencies]
2021-02-16 11:39:56 -08:00
tide = { version = "0.16.0", default-features = false, features = ["h1-server", "cookies"] }
2021-02-15 14:09:45 -08:00
async-std = { version = "1.9.0", features = ["attributes"] }
2021-02-16 11:39:56 -08:00
surf = { version = "2.1.0", default-features = false, features = ["curl-client", "encoding"] }
2021-02-15 14:09:45 -08:00
base64 = "0.13.0"
cached = "0.23.0"
2021-02-16 11:39:56 -08:00
askama = { version = "0.10.5", default-features = false, features = ["config"] }
2021-02-15 14:09:45 -08:00
serde = { version = "1.0.123", features = ["derive"] }
serde_json = "1.0.62"
async-recursion = "0.3.2"
regex = "1.4.3"
time = "0.2.25"
2021-02-18 11:40:10 -08:00
clap = "2.33.3"