-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (36 loc) · 1.05 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
[package]
name = "hncli"
version = "0.1.0"
authors = ["pierreyoda <pierreyoda@users.noreply.github.com>"]
edition = "2021"
categories = ["command-line-utilities"]
description = "A modern TUI for browsing Hacker News."
homepage = "https://www.hncli.newstackwhodis.com/"
license = "MIT"
repository = "https://github.com/pierreyoda/hncli"
[profile.release]
strip = true # strip symbols from binary
opt-level = "z" # optimize for binary size
lto = true # enable Link Time Optimization
[dependencies]
async-recursion = "1.1.1"
async-trait = "0.1.83"
chrono = { version = "0.4.38", features = ["serde"] }
crossterm = "0.28.1"
directories = "5.0.1"
futures = "0.3.31"
fuzzy-matcher = "0.3.7"
html2text = "0.13.2"
log = "0.4.22"
num-traits = "0.2.19"
ratatui = "0.29.0"
reqwest = { version = "0.12.9", features = ["json"] }
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
simplelog = "0.12.2"
thiserror = "2.0.0"
tokio = { version = "1.41.0", features = ["full"] }
toml = "0.8.19"
unicode-width = "0.2.0"
url = "2.5.3"
webbrowser = "1.0.2"