-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
41 lines (35 loc) · 822 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
37
38
39
40
41
[package]
name = "box"
authors = ["Colonial"]
version = "0.5.0"
edition = "2021"
description = "A simple container manager for your shell."
repository = "https://github.com/Colonial-Dev/box"
license = "AGPL-3.0"
[profile.release]
opt-level = "z"
codegen-units = 1
lto = true
[dependencies]
# Command line.
clap = { version = "4.5.23", features = ["derive"] }
nucleo-matcher = "0.3.1"
dialoguer = "0.11.0"
indicatif = "0.17.9"
comfy-table = "7.1.3"
colored = "3.0.0"
# Logging and error reporting
color-eyre = "0.6.3"
env_logger = "0.11.6"
log = "0.4.22"
# Serde cinematic universe
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
toml = "0.8.19"
# Other
seahash = "4.1.0"
petgraph = "0.7.0"
uzers = "0.12.1"
[[bin]]
name = "bx"
path = "src/main.rs"