-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
36 lines (33 loc) · 949 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
36
[package]
name = "otree"
version = "0.3.1"
edition = "2021"
build = "build.rs"
license = "MIT"
authors = ["fioncat"]
categories = ["command-line-utilities"]
readme = "README.md"
repository = "https://github.com/fioncat/otree"
description = "A command line tool to view objects (json/yaml/toml) in TUI tree widget"
[dependencies]
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
crossterm = { version = "0.28", features = ["use-dev-tty"] }
dirs = "6.0"
humansize = "2.1"
once_cell = "1.20"
paste = "1.0"
ratatui = "0.29"
regex = "1.11"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
serde_yml = "0.0"
toml = { version = "0.8", features = ["preserve_order"] }
tui-tree-widget = "0.23"
[build-dependencies]
simple-error = "0.3"
vergen = { version = "9.0", features = ["build", "rustc", "cargo", "si"] }
[profile.release]
lto = true
strip = true
incremental = false