-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (51 loc) · 1.76 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
45
46
47
48
49
50
51
52
53
[package]
name = "pindash-news"
version = "0.1.0"
authors = ["Fangdun Tsai <[email protected]>"]
edition = "2021"
homepage = "https://github.com/pindash-io/News"
documentation = "https://github.com/pindash-io/News"
repository = "https://github.com/pindash-io/News"
description = "pindash news - a reader, rss, pdf, etc."
license = "MIT OR Apache-2.0"
readme = "README.md"
categories = ["gui"]
keywords = ["egui", "gui"]
publish = false
[features]
default = ["syntect"]
wgpu = []
[dependencies]
anyhow = "1.0.70"
eframe = { version = "0.21", features = ["wgpu"] }
egui_extras = { version = "0.21", features = ["svg", "image"] }
image = { version = "0.24.5", default-features = false, features = ["png"] }
once_cell = "1.17.1"
r2d2 = "0.8.10"
r2d2_sqlite = "0.21.0"
reqwest = { version = "0.11.15", features = ["json", "gzip", "deflate", "brotli", "trust-dns"] }
tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread", "sync"] }
rusqlite = { version = "0.28.0", features = ["bundled", "array", "serde_json"] }
rusqlite_migration = "1.0.1"
serde = { version = "1.0.158", features = ["derive"] }
serde_json = "1.0.94"
tracing = "0.1.37"
tracing-subscriber = "0.3.16"
# feed-rs = "1.2.0"
feed-rs = { version = "1.3.0" }
chrono = { version = "0.4.24", default-features = false, features = ["clock"] }
url = "2.3.1"
open = "4.0.1"
scraper = { version = "0.15.0", default-features = false }
pulldown-cmark = { version = "0.9.2", default-features = false }
html-to-pulldown-cmark-events = "0.1.12"
backon = "0.4.0"
syntect = { version = "5", optional = true, default-features = false, features = [
"default-fancy",
] }
htmlize = { version = "1.0.2", features = ["entities", "unescape"] }
# html-escape = "0.2.13"
#ego-tree = "=0.6.2"
#atoi = "2.0.0"
# html5ever = "0.26.0"
# egui_dnd = "0.1.0"