-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
44 lines (41 loc) · 1.08 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "lares"
version = "0.2.3"
authors = ["Zeyi Fan <[email protected]>"]
edition = "2018"
description = "Simple RSS Reader Service (Fever API backend)"
license = "MIT"
homepage = "https://github.com/fanzeyi/lares"
readme = "README.md"
keywords = ["rss", "rssreader", "fever"]
categories = [] # :(
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
rusqlite = { version = "0.28", features = ["array", "bundled", "chrono"] }
tide = "0.17.0-beta.1"
async-std = { version = "1.6", features = ["attributes", "unstable"] }
r2d2_sqlite = "0.21.0"
r2d2 = "0.8.9"
thiserror = "1.0.20"
serde = { version = "1.0.156", features = ["derive"] }
serde_json = "1.0.57"
structopt = "0.3.16"
anyhow = "1.0.32"
surf = "1.0.3"
prettytable-rs = "0.10.0"
futures = "0.3.5"
chrono = { version = "0.4.24", default-features = false, features = ["clock", "wasmbind"] }
md-5 = "0.9.1"
feed-rs = "1.3.0"
serde_urlencoded = "0.6.1"
quick-xml = "0.18.1"
log = "0.4.11"
femme = "2.1.0"
url = "2.1.1"
either = "1.5.3"
http = "0.1"
[dev-dependencies]
rand = "0.7"
tempfile = "3"
assert_cmd = "1.0.1"