-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
30 lines (29 loc) · 892 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
[package]
name = "orion-ssg"
version = "1.1.6"
edition = "2021"
authors = ["Adrian Tombu <[email protected]>"]
keywords = ["generator", "static", "markdown", "html", "blog"]
categories = ["command-line-utilities", "value-formatting", "web-programming"]
description = "A static site generator to create a simple blog from Markdown files."
license = "GPL-3.0"
repository = "https://github.com/adriantombu/orion"
include = ["/src", "LICENSE.md", "README.md"]
[dependencies]
anyhow = "1"
chrono = { version = "0.4", features = ["serde"] }
console = "0.15"
fs_extra = "1.3"
glob = "0.3"
gray_matter = "0.2"
pico-args = "0.5"
pulldown-cmark = "0.11"
quick-xml = "0.35"
rayon = "1.7"
rouille = "3.6"
rss = "2.0"
rust-embed = { version = "8", features = ["debug-embed", "compression", "include-exclude"] }
serde = { version = "1", features = ["derive"] }
slug = "0.1"
tinytemplate = "1.2"
toml = "0.8"