-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
35 lines (31 loc) · 851 Bytes
/
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
[package]
name = "rss2pan"
version = "0.1.6"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
clap = { version = "4.5.4", features = ["cargo"] }
chrono = "0.4.23"
dirs = "5.0.1"
url = "2.2.2"
rusqlite = { version = "0.31.0", features = ["bundled"] }
rss = "2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.12", features = ["json", "cookies", "socks"] }
tokio = { version = "1", features = ["full"] }
futures = "*"
log = "0.4.0"
env_logger = "0.11.3"
once_cell = "1.15.0"
regex = "1"
rand = "0.8.5"
num-bigint = "0.4.4"
base64 = "0.22.0"
[target.'cfg(all(unix, not(macos)))'.dependencies]
openssl = { version = "0.10", features = ["vendored"] }
[profile.release]
lto = true
strip = true
opt-level = "z"