[package]
edition = "2021"
rust-version = "1.95.0"
name = "yadr"
version = "0.5.0"
authors = ["jon.gjengset@helsing.ai"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line tool for accessing Y-Statement-style ADRs in code comments."
readme = "README.md"
keywords = [
"adr",
"architecture",
"documentation",
"y-statement",
"comments",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/helsing-ai/yadr"
[lib]
name = "yadr"
path = "src/lib.rs"
[[bin]]
name = "yadr"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "instas"
path = "tests/instas.rs"
[dependencies.camino]
version = "1.1.6"
[dependencies.clap]
version = "4.5.4"
features = ["derive"]
[dependencies.ignore]
version = "0.4.22"
[dependencies.jiff]
version = "0.2.35"
features = ["std"]
default-features = false
[dependencies.miette]
version = "7.2.0"
features = ["fancy"]
[dependencies.ra_ap_syntax]
version = "0.0.345"
[dependencies.regex]
version = "1.10.4"
[dependencies.streaming-iterator]
version = "0.1.9"
[dependencies.tree-sitter]
version = "0.26.0"
[dependencies.tree-sitter-nix]
version = "0.3.0"
[dependencies.tree-sitter-python]
version = "0.25.0"
[dev-dependencies.assert_cmd]
version = "2.2.2"
[dev-dependencies.insta]
version = "1.38.0"
[dev-dependencies.predicates]
version = "3.1.4"