lex-api 0.11.21

HTTP/JSON + MCP server surface for the Lex toolchain.
Documentation
[package]
name = "lex-api"
description = "HTTP/JSON + MCP server surface for the Lex toolchain."
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
authors.workspace = true
keywords.workspace = true
categories.workspace = true

[dependencies]
serde.workspace = true
serde_json.workspace = true
anyhow.workspace = true
indexmap.workspace = true
tiny_http = "0.12"
lex-syntax = { path = "../lex-syntax", version = "0.11.0" }
lex-ast = { path = "../lex-ast", version = "0.11.0" }
lex-types = { path = "../lex-types", version = "0.11.0" }
lex-bytecode = { path = "../lex-bytecode", version = "0.11.0" }
# `default-features = false` drops the `df` (Polars) feature: lex-api
# and its embedders (lex-hub) never call `std.df`, and polars pulls a
# heavy dep tree that has conflicted on `chrono`. `std.arrow` is
# unaffected. Workspace builds that include lex-cli still get `df` via
# feature unification, so the toolchain is unchanged.
lex-runtime = { path = "../lex-runtime", version = "0.11.0", default-features = false }
lex-store = { path = "../lex-store", version = "0.11.0" }
lex-trace = { path = "../lex-trace", version = "0.11.0" }
lex-vcs = { path = "../lex-vcs", version = "0.11.0" }

flate2 = "1"
tar = "0.4"
tempfile = "3"

[dev-dependencies]