-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (68 loc) · 2.06 KB
/
Cargo.toml
File metadata and controls
74 lines (68 loc) · 2.06 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "liveboat"
version = "1.1.7"
edition = "2021"
description = "Static page generator for Newsboat feeds"
homepage = "https://github.com/exaroth/liveboat"
repository = "https://github.com/exaroth/liveboat"
readme = "README.md"
license-file = "LICENSE"
keywords = ["feeds", "rss", "news", "generator", "newsboat"]
categories = ["command-line-utilities", "no-std", "template-engine", "web-programming"]
exclude = [".github/", "liveboat/", "scripts/", "templates/"]
[dependencies]
clap = { version = "4.5.21", features = ["derive"] }
serde = { version = "1.0.215", features = ["derive"] }
rusqlite = { version="0.32.1", features=["bundled"] }
reqwest = { version = "0.12.9", features = ["blocking", "native-tls-vendored"] }
nix = { version = "0.29.0", features = ["user"] }
# readability-liveboat = { path="../readability", version = "0.3.1"}
readability-liveboat = "0.3.4"
toml = "0.8.19"
serde_json = "1.0.133"
chrono = "0.4.38"
bs58 = "0.5.1"
handlebars = "6.2.0"
rand = "0.8.5"
resolve-path = "0.1.0"
dialoguer = "0.11.0"
thiserror = "2.0.3"
console = "0.15.8"
env_logger = "0.11.5"
log = "0.4.22"
anyhow = "1.0.94"
self-replace = "1.5.0"
tar = "0.4.43"
flate2 = "1.0.35"
sudo = "0.6.0"
lazy_static = "1.5.0"
rss = "2.0.11"
opml = "1.1.6"
url = "2.5.4"
libnewsboat = "2.38.0"
regex = "1.11.1"
[[bin]]
name = "liveboat"
path = "src/main.rs"
[profile.release]
codegen-units = 1
lto = true
[workspace.metadata.cross.target.aarch64-unknown-linux-gnu]
pre-build = [
"dpkg --add-architecture $CROSS_DEB_ARCH",
"apt-get update && apt-get --assume-yes install sqlite3:$CROSS_DEB_ARCH"
]
[dev-dependencies]
mockall = "0.13.1"
[package.metadata.deb]
maintainer = "Konrad Wasowicz <exaroth@gmail.com>"
copyright = "2024, Konrad Wasowicz <exaroth@gmail.com>"
extended-description = """Static page generator for Newsboat feeds"""
license-file = ["LICENSE", "4"]
depends = "$auto"
section = "utility"
priority = "optional"
assets = [
["target/x86_64-unknown-linux-musl/release/liveboat", "usr/bin/", "755"],
{ source = "README.md", dest = "usr/share/doc/liveboat/README", mode = "644"},
]