-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (32 loc) · 988 Bytes
/
Copy pathCargo.toml
File metadata and controls
39 lines (32 loc) · 988 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
33
34
35
36
37
38
39
[package]
name = "akari-theme"
version = "1.19.0"
edition = "2024"
license = "MIT"
repository = "https://github.com/cappyzawa/akari-theme"
description = "A terminal color theme inspired by Japanese alleys and lanterns"
keywords = ["terminal", "theme", "color", "palette"]
categories = ["command-line-interface"]
[lib]
name = "akari_theme"
path = "src/lib.rs"
[[bin]]
name = "akari-gen"
path = "src/main.rs"
required-features = ["generator"]
[features]
default = []
generator = ["dep:tera", "dep:walkdir", "dep:plist", "dep:clap"]
[dependencies]
serde = { version = "1.0.228", features = ["derive"] }
thiserror = "2.0.17"
toml = "0.9.10"
# Generator dependencies (optional)
plist = { version = "1", optional = true }
tera = { version = "1.20.1", optional = true }
walkdir = { version = "2", optional = true }
# CLI dependencies (optional, for generator binary)
clap = { version = "4.5.53", features = ["derive"], optional = true }
[dev-dependencies]
serde_json = "1"
tempfile = "3"