2023-10-18 19:03:45 -04:00
|
|
|
[package]
|
2023-12-21 19:28:31 -05:00
|
|
|
name = "natter"
|
2023-10-18 19:07:12 -04:00
|
|
|
version = "0.0.1"
|
2023-10-18 19:03:45 -04:00
|
|
|
edition = "2021"
|
2023-12-21 19:37:07 -05:00
|
|
|
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/"
|
|
|
|
]
|
2023-10-18 19:03:45 -04:00
|
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2023-10-18 19:26:04 -04:00
|
|
|
clap = { version = "4.4.6", default-features = false, features = ["std", "color", "help", "derive"] }
|
2023-12-21 19:37:07 -05:00
|
|
|
duster = "0.1.1"
|
2023-10-27 18:59:40 -04:00
|
|
|
futures = "0.3.29"
|
2023-10-22 16:28:54 -04:00
|
|
|
include_dir = "0.7.3"
|
2023-10-23 18:39:54 -04:00
|
|
|
# TODO: This is temporary to work on the latest organic code. Eventually switch back to using the published crate.
|
2023-12-17 11:54:59 -05:00
|
|
|
# organic = { path = "../organic" }
|
2024-04-11 21:55:55 -04:00
|
|
|
organic = "0.1.16"
|
2023-10-18 20:06:30 -04:00
|
|
|
serde = { version = "1.0.189", default-features = false, features = ["std", "derive"] }
|
2023-10-22 15:06:31 -04:00
|
|
|
serde_json = "1.0.107"
|
2023-10-18 21:25:37 -04:00
|
|
|
tokio = { version = "1.30.0", default-features = false, features = ["rt", "rt-multi-thread", "fs", "io-util"] }
|
2023-10-18 20:06:30 -04:00
|
|
|
toml = "0.8.2"
|
2023-12-23 20:45:20 -05:00
|
|
|
url = "2.5.0"
|
2023-12-21 20:02:28 -05:00
|
|
|
|
|
|
|
# Optimized build for any sort of release.
|
|
|
|
[profile.release-lto]
|
|
|
|
inherits = "release"
|
|
|
|
lto = true
|
|
|
|
strip = "symbols"
|