-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 869 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 869 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
[package]
categories = ["command-line-utilities"]
description = "Static recipe site generator"
documentation = "https://docs.rs/sweet-potator"
edition = "2024"
exclude = ["/.editorconfig", "/assets/", "/gh-pages/"]
homepage = "https://github.com/tobx/sweet-potator"
license-file = "LICENSE"
name = "sweet-potator"
readme = "README.md"
repository = "https://github.com/tobx/sweet-potator"
version = "0.7.12"
[[bin]]
name = "sweet-potator"
path = "src/cli/main.rs"
[dependencies]
clap = { version = "4.5.48", features = ["derive"] }
config = "0.15.18"
dirs = "6.0.0"
include_dir = "0.7.4"
owo-colors = { version = "4.2.3", features = ["supports-colors"] }
sanitize-filename = "0.6.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
slug = "0.1.6"
tera = "1.20.0"
thiserror = "2.0.17"
toml = "0.9.7"
[dev-dependencies]
tempfile = "3.19.1"