1
0
mirror of https://github.com/spikecodes/libreddit synced 2025-01-23 08:20:17 +01:00
libreddit/Cargo.toml

22 lines
801 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
cached = "0.23.0"
2021-02-24 20:26:12 -08:00
askama = { version = "0.10.5", default-features = false }
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"
2021-02-24 20:26:12 -08:00
clap = { version = "2.33.3", default-features = false }
2021-02-15 14:09:45 -08:00
time = "0.2.25"