-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
57 lines (48 loc) · 1.35 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "catppuccin"
version = "2.5.0-beta.0"
authors = ["Catppuccin Org <[email protected]>"]
edition = "2021"
description = "🦀 Soothing pastel theme for Rust."
documentation = "https://docs.rs/catppuccin"
homepage = "https://github.com/catppuccin/rust"
repository = "https://github.com/catppuccin/rust"
license = "MIT"
keywords = ["catppuccin", "palette", "color", "colorscheme", "theme"]
[package.metadata.docs.rs]
all-features = true
[lints]
rust.missing_docs = "warn"
clippy.all = "warn"
clippy.pedantic = "warn"
clippy.nursery = "warn"
[dependencies]
ansi_term = { version = "0.12.1", optional = true }
css-colors = { version = "1.0.1", optional = true }
ratatui = { version = "0.29.0", optional = true }
serde = { version = "1.0.203", features = ["derive"], optional = true }
[build-dependencies]
itertools = "0.13.0"
prettyplease = "0.2.20"
proc-macro2 = "1.0.84"
quote = "1.0.36"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
syn = "2.0.66"
[dev-dependencies]
crossterm = "0.28.1"
serde_json = "1.0.117"
[features]
ansi-term = ["dep:ansi_term"]
css-colors = ["dep:css-colors"]
ratatui = ["dep:ratatui"]
serde = ["dep:serde"]
[[example]]
name = "css"
required-features = ["css-colors"]
[[example]]
name = "term_grid"
required-features = ["ansi-term"]
[[example]]
name = "ratatui"
required-features = ["ratatui"]