-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
61 lines (56 loc) · 1.92 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "norgolith"
version = "0.2.0"
edition = "2021"
authors = ["NTBBloodbath <[email protected]"]
license = "GPL-2.0"
readme = "README.md"
description = "The monolithic Norg static site generator"
repository = "https://github.com/NTBBloodbath/norgolith"
keywords = ["static", "site", "generator", "blog", "norg"]
include = ["src/**/*", "LICENSE", "README.md"]
[[bin]]
name = "lith"
path = "src/main.rs"
[dependencies]
chrono = { version = "0.4.39", features = ["serde"] }
clap = { version = "4.5.27", features = ["deprecated", "derive", "env", "wrap_help"] }
comfy-table = "7.1.3"
eyre = "0.6.12"
hyper = { version = "=0.14.28", features = ["runtime", "server", "http1", "http2"] }
tera = { version = "1.20.0", features = ["preserve_order"] }
tokio = { version = "1.43.0", features = ["fs", "time", "rt-multi-thread", "macros", "process"] }
toml = { version = "0.8.19", features = ["preserve_order"] }
rust-norg = { git = "https://github.com/nvim-neorg/rust-norg", branch = "main" }
whoami = "1.5.2"
open = "5.3.2"
indoc = "2.0.5"
html-escape = "0.2.13"
notify = "8.0.0"
notify-debouncer-full = "0.5.0"
serde = { version = "1.0.217", features = ["derive"] }
mime_guess = "2.0.5"
tokio-tungstenite = "0.26.1"
futures-util = { version = "0.3.31", features = ["sink"] }
walkdir = "2.5.0"
minify-html = "0.15.0"
num_cpus = "1.16.0"
minify-js = "0.6.0"
regex = "1.11.1"
semver = { version = "1.0.25", features = ["serde"] }
git2 = "0.20.0"
tempfile = "3.17.1"
inquire = { version = "0.7.5", features = ["chrono", "date"] }
spinoff = "0.8.0"
tokio-stream = { version = "0.1.17", features = ["sync", "net"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["ansi", "chrono", "env-filter"] }
colored = "3.0.0"
local-ip-address = "0.6.3"
titlecase = "3.3.0"
rss = "2.0.12"
lightningcss = "1.0.0-alpha.64"
[dev-dependencies]
mockall = "0.13.1"
[features]
ci = [] # Used to ignore certain tests on GitHub CIs