-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (35 loc) · 980 Bytes
/
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
[package]
name = "sushi-gen"
description="A simple but customizable static site generator / blog generator"
version = "0.2.11"
edition = "2021"
license = "LGPL-3.0"
keywords = ["static", "site", "generator", "blog"]
categories = ["command-line-utilities"]
repository = "https://github.com/fpg2012/sushi"
authors = ["nth233 ([email protected])"]
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name="ssushi"
path="src/main.rs"
[dependencies]
liquid = "0.26.9"
serde = "1.0"
serde_yaml = "0.9.30"
subprocess = "0.2.9"
lazy_static = "1.5.0"
itertools = "0.14.0"
log = "0.4.25"
clap = { version = "4.5.26", features = ["derive"] }
chrono = "0.4.39"
directories = "6.0.0"
regex = "1.11.1"
fs_extra = "1.3.0"
shadow-rs = { version = "0.37.0", features = ["metadata"]}
[dependencies.simple_logger]
version = "5.0.0"
default-features = false
features = ["colors"]
[build-dependencies]
shadow-rs = "0.37.0"