-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (22 loc) · 729 Bytes
/
Cargo.toml
File metadata and controls
27 lines (22 loc) · 729 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
[package]
name = "material"
description = "A material design color palette for the terminal"
version = "0.1.1"
edition = "2021"
repository = "https://github.com/azorng/material"
readme = "README.md"
keywords = ["cli", "color", "terminal", "palette", "material-design"]
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.docs.rs]
all-features = true
[dependencies]
ratatui = { version = "0.25.0", optional = true }
crossterm = { version = "0.27.0", optional = true }
clipboard = "0.5.0"
[[bin]]
# necessary to avoid including crossterm / ratatui in the lib
name = "material"
required-features = ["cli"]
[features]
cli = ["ratatui", "crossterm"]