-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 702 Bytes
/
Cargo.toml
File metadata and controls
28 lines (26 loc) · 702 Bytes
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
[package]
name = "lobtui"
version = "0.3.1"
authors = ["Badr Badri <contact@pythops.com>"]
license = "GPL-3.0"
description = "TUI for lobste.rs website"
edition = "2024"
readme = "Readme.md"
homepage = "https://github.com/pythops/lobtui"
repository = "https://github.com/pythops/lobtui"
[dependencies]
crossterm = { version = "0.28", features = ["event-stream"] }
futures = "0.3"
ratatui = "0.29"
tokio = { version = "1", features = ["full"] }
scraper = "0.23"
reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls",
] }
open = "5"
color-eyre = "0.6"
clap = { version = "4", features = ["derive", "cargo"] }
[profile.release]
lto = "fat"
strip = true
codegen-units = 1