-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 784 Bytes
/
Cargo.toml
File metadata and controls
32 lines (30 loc) · 784 Bytes
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
[package]
name = "omp-manager"
version = "0.1.2"
edition = "2021"
description = "A TUI manager for Oh My Posh - browse themes, install fonts, and configure shells with zero effort"
license = "MIT"
readme = "README.md"
keywords = ["oh-my-posh", "prompt", "theme", "tui", "terminal"]
categories = ["command-line-utilities"]
repository = "https://github.com/marlocarlo/omp-manager"
homepage = "https://github.com/marlocarlo/omp-manager"
exclude = [
"target/",
"packages/",
"scoop/",
".github/",
"screenshot.png",
]
[dependencies]
ratatui = "0.29"
crossterm = "0.28"
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
dirs = "6"
anyhow = "1"
regex = "1"
[[bin]]
name = "omp-manager"
path = "src/main.rs"