archival 0.19.1

The simplest CMS in existence
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! A language server for archival's liquid templates, spoken over stdio by
//! `archival lsp`.

mod builtin;
mod diagnostics;
mod documents;
mod objects;
mod server;
mod toml_diag;
mod workspace;

pub(crate) use server::run_stdio;