-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (56 loc) · 1.8 KB
/
Copy pathCargo.toml
File metadata and controls
58 lines (56 loc) · 1.8 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
[package]
name = "rustipo"
version = "0.16.1"
edition = "2024"
description = "Themeable Markdown-first static site generator for blogs, notes, docs, and personal sites"
license = "MIT"
readme = "README.md"
repository = "https://github.com/fcendesu/rustipo"
homepage = "https://github.com/fcendesu/rustipo"
keywords = ["ssg", "markdown", "blog", "docs", "tera"]
categories = ["command-line-utilities", "web-programming"]
include = [
"/assets/**",
"/docs/**",
"/examples/basic-portfolio/config.toml",
"/examples/basic-portfolio/content/**",
"/examples/basic-portfolio/static/**",
"/examples/basic-portfolio/themes/**",
"/examples/journal/config.toml",
"/examples/journal/content/**",
"/examples/journal/static/**",
"/examples/knowledge-base/config.toml",
"/examples/knowledge-base/content/**",
"/examples/knowledge-base/static/**",
"/src/**",
"/tests/**",
"/CHANGELOG.md",
"/CODE_OF_CONDUCT.md",
"/CONTRIBUTING.md",
"/Cargo.lock",
"/Cargo.toml",
"/LICENSE.md",
"/README.md",
]
[dependencies]
anyhow = "1.0.102"
clap = { version = "4.6.0", features = ["derive"] }
gray_matter = "0.3.2"
image = { version = "0.25.8", default-features = false, features = ["jpeg", "png", "webp"] }
pulldown-cmark = "0.13.1"
notify = "8.2.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
syntect = "5.3.0"
tera = "1.20.1"
axum = "0.8.8"
chrono = { version = "0.4.42", default-features = false, features = ["std"] }
tempfile = "3.27.0"
tokio = { version = "1.50.0", features = ["rt-multi-thread", "macros", "net"] }
toml = "1.0.6"
toml_edit = "0.23.7"
tower-http = { version = "0.6.8", features = ["fs"] }
walkdir = "2.5.0"
grass = { version = "0.13.4", default-features = false }
[dev-dependencies]
tower = { version = "0.5.3", features = ["util"] }