-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
47 lines (41 loc) · 1.13 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
[package]
name = "nix-melt"
version = "0.1.3"
authors = ["figsoda <figsoda@pm.me>"]
edition = "2021"
description = "A ranger-like flake.lock viewer"
readme = "README.md"
homepage = "https://github.com/nix-community/nix-melt"
repository = "https://github.com/nix-community/nix-melt"
license = "MPL-2.0"
keywords = ["cli", "flake", "nix", "tui", "viewer"]
categories = ["command-line-utilities"]
[dependencies]
color-eyre = "0.6.3"
crossterm = "0.28.1"
eyre = "0.6.12"
indexmap = { version = "2.5.0", features = ["serde"] }
parse-display = "0.10.0"
rustc-hash = "2.0.0"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
serde_with = "3.9.0"
thiserror = "2.0.7"
[dependencies.clap]
version = "4.5.17"
features = ["cargo", "derive", "unicode", "wrap_help"]
[dependencies.ratatui]
version = "0.28.1"
default-features = false
features = ["crossterm"]
[dependencies.time]
version = "0.3.36"
features = ["formatting", "local-offset", "serde"]
[build-dependencies]
clap = { version = "4.5.17", features = ["derive"] }
clap_complete = "4.5.26"
clap_mangen = "0.2.23"
[profile.release]
lto = true
panic = "abort"
codegen-units = 1