-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (46 loc) · 1.37 KB
/
Copy pathCargo.toml
File metadata and controls
51 lines (46 loc) · 1.37 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
[package]
name = "otree"
version = "0.6.5"
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"
base64 = "^0"
clap = { version = "^4", features = ["derive"] }
console = "^0"
crossterm = { version = "0.28", features = ["use-dev-tty"] }
dirs = "^6"
hcl-rs = "^0"
humansize = "^2"
notify = "^8"
paste = "^1"
quick-xml = { version = "^0", features = ["serialize"] }
ratatui = "0.29"
regex = "^1"
serde = { version = "^1", features = ["derive"] }
serde_json = { version = "^1", features = ["preserve_order"] }
serde_yml = "^0"
strum = { version = "^0", features = ["derive"] }
toml = { version = "^1", features = ["preserve_order"] }
tui-textarea = "0.7"
tui-tree-widget = "0.23"
[build-dependencies]
simple-error = "^0"
vergen = { version = "^9", features = ["build", "rustc", "cargo", "si"] }
[dev-dependencies]
tempfile = "^3"
[profile.release]
lto = true
strip = true
incremental = false
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
single_match_else = "allow" # match-ing Options is visually cleaner
inefficient_to_string = "allow" # makes type conversion less obvious for little benefit
too_many_lines = "allow" # necessary evil for now