2023-11-23 16:34:12 +03:00
|
|
|
[package]
|
|
|
|
name = "pesto"
|
2023-12-13 14:35:04 +03:00
|
|
|
description = "Gien a list of positions extract doc-comment into markdown and frontmatter."
|
2023-11-23 16:34:12 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
2023-11-28 19:28:51 +03:00
|
|
|
[profile.release]
|
|
|
|
debug = true
|
2023-11-23 16:34:12 +03:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
rnix = "0.11.0"
|
|
|
|
# version defined by rnix
|
|
|
|
rowan = { version = "*" }
|
|
|
|
regex = "1.9.5"
|
|
|
|
textwrap = "0.16.0"
|
|
|
|
walkdir = "2.4.0"
|
|
|
|
clap = { version = "4.4.4", features = ["derive"] }
|
2023-11-28 19:28:51 +03:00
|
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
2023-11-23 16:34:12 +03:00
|
|
|
serde_json = "1.0"
|
|
|
|
expect-test = "1.4.0"
|
2023-11-25 19:30:43 +03:00
|
|
|
serde_with = "3.4.0"
|
2023-12-13 14:35:04 +03:00
|
|
|
serde_yaml = "0.9.27"
|
2023-12-26 16:24:07 +03:00
|
|
|
comrak = "0.20.0"
|
2023-11-23 16:34:12 +03:00
|
|
|
|
|
|
|
|
|
|
|
# [dev-dependencies]
|