[package]
edition = "2021"
rust-version = "1.85"
name = "kode-markdown"
version = "0.2.2"
authors = ["Jason Adams <jason@yellowgorilla.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Markdown intelligence for the kode editor — parsing, formatting commands, and input rules"
homepage = "https://github.com/kyomi-ai/kode"
readme = "README.md"
keywords = [
"editor",
"markdown",
"parser",
"formatter",
"commonmark",
]
categories = [
"text-editors",
"text-processing",
]
license = "MIT"
repository = "https://github.com/kyomi-ai/kode"
[lib]
name = "kode_markdown"
path = "src/lib.rs"
[dependencies.arborium-markdown]
version = "2.16"
[dependencies.arborium-tree-sitter]
version = "2.16"
[dependencies.kode-core]
version = "0.2.1"
[lints.clippy]
large_enum_variant = "deny"
too_many_arguments = "deny"
wrong_self_convention = "deny"
[lints.rust]
dead_code = "deny"
unused_imports = "deny"
unused_mut = "deny"
unused_variables = "deny"