35 lines
1.0 KiB
TOML
35 lines
1.0 KiB
TOML
[package]
|
|
name = "itsy-gitsy"
|
|
version = "0.5.1"
|
|
edition = "2021"
|
|
authors = ["Trevor Bentley <gitsy@trevorbentley.com>"]
|
|
description = "Static site generator for git repositories"
|
|
keywords = ["git", "website", "frontend", "development"]
|
|
categories = ["command-line-utilities", "development-tools"]
|
|
homepage = "https://github.com/mrmekon/itsy-gitsy"
|
|
repository = "https://github.com/mrmekon/itsy-gitsy"
|
|
readme = "README.md"
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[features]
|
|
default = ["markdown", "highlight"]
|
|
markdown = ["dep:pulldown-cmark"]
|
|
highlight_fast = ["syntect/default-onig"]
|
|
highlight = ["syntect/default-fancy"]
|
|
|
|
[dependencies]
|
|
chrono = { version = "0.4.23", features=["clock"] }
|
|
clap = { version="4.0.32", features=["derive"] }
|
|
git2 = "0.15.0"
|
|
open = "3.2.0"
|
|
pulldown-cmark = { version = "0.9.2", optional = true }
|
|
rayon = "1.6.1"
|
|
serde = { version = "1.0.152", features = ["derive"] }
|
|
syntect = { version = "5.0.0", default-features = false, optional = true }
|
|
tera = "1.17.1"
|
|
toml = "0.5.10"
|
|
|
|
# For SSH passphrase support:
|
|
#pinentry = "0.5.0"
|
|
#secrecy = "0.8.0"
|