forked from catppuccin/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
75 lines (63 loc) · 1.74 KB
/
Cargo.toml
File metadata and controls
75 lines (63 loc) · 1.74 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "catppuccin"
version = "2.6.0"
authors = ["Catppuccin Org <releases@catppuccin.com>"]
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]
features = ["ansi-term", "bevy", "css-colors", "iced", "ratatui", "serde"]
[lints]
rust.missing_docs = "warn"
clippy.all = "warn"
clippy.pedantic = "warn"
clippy.nursery = "warn"
[dependencies]
ansi_term = { version = "0.12", optional = true }
bevy = { version = "0.17", default-features = false, optional = true }
css-colors = { version = "1.0", optional = true }
iced = { version = "0.14.0", optional = true }
ratatui-core = { version = "0.1.0", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
[build-dependencies]
itertools = "0.14"
prettyplease = "0.2"
proc-macro2 = "1.0"
quote = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
syn = "2.0"
[dev-dependencies]
crossterm = "0.29"
ratatui = "0.30"
serde_json = "1.0"
[features]
ansi-term = ["dep:ansi_term"]
bevy = ["bevy/bevy_color"]
bevy-full = ["bevy/default"]
css-colors = ["dep:css-colors"]
iced = ["dep:iced"]
ratatui = ["dep:ratatui-core"]
serde = ["dep:serde"]
[[example]]
name = "term_grid"
required-features = ["ansi-term"]
[[example]]
name = "bevy"
required-features = ["bevy-full"]
[[example]]
name = "css"
required-features = ["css-colors"]
[[example]]
name = "iced"
required-features = ["iced"]
[[example]]
name = "ratatui"
required-features = ["ratatui"]
[[example]]
name = "serde"
required-features = ["serde"]