-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
52 lines (40 loc) · 1.18 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
[package]
name = "notfeed"
version = "0.2.10"
edition = "2021"
authors = ["ylfeng <ylfeng@ir.hit.edu.cn>"]
license = "GPL-2.0"
description = "Turn GitHub into an RSS reader."
homepage = "https://github.com/NotCraft/NotFeed"
repository = "https://github.com/NotCraft/NotFeed"
keywords = ["shell", "server", "rss"]
exclude = [".github"]
[profile.release]
lto = true
opt-level = 3
panic = 'abort'
codegen-units = 1
[dependencies]
regex = "1"
serde = "1"
serde_json = "1"
serde_derive = "1"
html-minifier = "3"
chrono = { version = "0.4", features = ["serde"] }
figment = { version = "0.10", features = ["toml", "yaml", "env"] }
rss = { version = "2.0", features = ["with-serde"] }
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls", "socks"] }
tokio = { version = "1", features = ["full"] }
warp = { version = "0.3", features = ["tls"] }
clap = { version = "4", features = ["derive", "cargo"] }
rhai = "1"
fs_extra = "1.2.0"
tracing = "0.1"
tracing-subscriber = "0.3"
html-escape = "0.2"
handlebars = { version = "4", features = ["script_helper", "dir_source"] }
lazy_static = "1.4"
latex2mathml = "0.2"
v_latexescape = "0.14"
[dev-dependencies]
cargo-husky = "1"