[package]
edition = "2024"
rust-version = "1.95"
name = "merman-analysis"
version = "0.8.0-alpha.3"
authors = ["Mingzhen Zhuang <superfrankie621@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Diagnostics-first analysis contracts and source mapping for Merman."
homepage = "https://github.com/Latias94/merman"
documentation = "https://docs.rs/merman-analysis"
readme = "README.md"
keywords = [
"mermaid",
"diagnostics",
"lint",
"lsp",
"parser",
]
categories = [
"parser-implementations",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Latias94/merman"
resolver = "2"
[features]
core-full = ["merman-core/full"]
core-host = ["merman-core/host"]
default = [
"core-full",
"core-host",
]
[lib]
name = "merman_analysis"
path = "src/lib.rs"
[[test]]
name = "analyzer"
path = "tests/analyzer.rs"
[[test]]
name = "payload_schema"
path = "tests/payload_schema.rs"
[[test]]
name = "source_positions"
path = "tests/source_positions.rs"
[dependencies.chrono]
version = "0.4.45"
features = ["std"]
default-features = false
[dependencies.json5]
version = "1.3.1"
[dependencies.merman-core]
version = "0.8.0-alpha.3"
default-features = false
[dependencies.serde]
version = "1.0.217"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1.0.150"
features = ["preserve_order"]
[dependencies.serde_yaml]
version = "0.9.34"
[dependencies.thiserror]
version = "2.0.11"