lattice 0.2.0

A markdown predicate linter and backlink reconciler, shipped as an LSP server.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: AGPL-3.0-or-later
// Copyright (C) 2026 Two Wells <contact@twowells.dev>

//! Binary entry point for Lattice. All logic lives in the library crate
//! (`lattice::run`); this shim exists so the parsers are also reachable as a
//! library by the `cargo-fuzz` targets under `fuzz/`.

use std::process::ExitCode;

fn main() -> ExitCode {
    lattice::run()
}