[package]
edition = "2021"
rust-version = "1.75"
name = "logbook"
version = "0.2.0"
authors = ["Jeff Bai"]
build = false
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A tiny CLI that gives every repo a single logbook.md for why-I-made-this-decision and what-I-rejected — the architectural context that's currently scattered across your head, half-written PR descriptions, and Slack threads."
homepage = "https://github.com/jeffbai996/logbook"
documentation = "https://docs.rs/logbook"
readme = "README.md"
keywords = [
"cli",
"decision-log",
"markdown",
"adr",
"documentation",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/jeffbai996/logbook"
[lib]
name = "logbook"
path = "src/lib.rs"
[[bin]]
name = "logbook"
path = "src/main.rs"
[dependencies.chrono]
version = "0.4"
features = ["clock"]
default-features = false
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.insta]
version = "1.40"
[dev-dependencies.predicates]
version = "3.1"
[dev-dependencies.proptest]
version = "1.5"
[dev-dependencies.tempfile]
version = "3.10"
[profile.release]
opt-level = "z"
lto = true
strip = true