-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
41 lines (35 loc) · 1.36 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
[package]
name = "norgolith"
version = "0.1.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"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4.38"
clap = { version = "4.5.4", features = ["deprecated", "derive", "env", "wrap_help"] }
comfy-table = "7.1.1"
eyre = "0.6.12"
hyper = { version = "=0.14.28", features = ["runtime", "server", "http1", "http2"] }
tera = "1.19.1"
tokio = { version = "1.37.0", features = ["fs", "time", "rt-multi-thread", "macros", "process"] }
toml = "0.8.12"
rust-norg = { git = "https://github.com/nvim-neorg/rust-norg", branch = "main" }
whoami = "1.5.1"
open = "5.3.0"
indoc = "2.0.5"
html-escape = "0.2.13"
[profile.optimized] # Size optimizations that will hurt build speed
inherits = "release" # Which profile we inherit
opt-level = "z" # Optimize for size
codegen-units = 1 # Build speed -> Executable size
strip = true # Remove debug symbols
[dev-dependencies]
mockall = "0.12.1"
[features]
ci = [] # Used to ignore certain tests on GitHub CIs