41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[package]
|
|
name = "natter"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
authors = ["Tom Alexander <tom@fizz.buzz>"]
|
|
description = "A static site generator using org source files."
|
|
license = "0BSD"
|
|
repository = "https://code.fizz.buzz/talexander/natter"
|
|
readme = "README.md"
|
|
keywords = ["static", "site", "generator"]
|
|
categories = ["command-line-utilities"]
|
|
resolver = "2"
|
|
include = [
|
|
"LICENSE",
|
|
"**/*.rs",
|
|
"Cargo.toml",
|
|
"Cargo.lock",
|
|
"default_environment/"
|
|
]
|
|
|
|
|
|
[dependencies]
|
|
clap = { version = "4.4.6", default-features = false, features = ["std", "color", "help", "derive"] }
|
|
duster = "0.1.1"
|
|
futures = "0.3.29"
|
|
include_dir = "0.7.3"
|
|
# TODO: This is temporary to work on the latest organic code. Eventually switch back to using the published crate.
|
|
# organic = { path = "../organic" }
|
|
organic = "0.1.13"
|
|
serde = { version = "1.0.189", default-features = false, features = ["std", "derive"] }
|
|
serde_json = "1.0.107"
|
|
tokio = { version = "1.30.0", default-features = false, features = ["rt", "rt-multi-thread", "fs", "io-util"] }
|
|
toml = "0.8.2"
|
|
walkdir = "2.4.0"
|
|
|
|
# Optimized build for any sort of release.
|
|
[profile.release-lto]
|
|
inherits = "release"
|
|
lto = true
|
|
strip = "symbols"
|