Files
lumbridge-code/Cargo.toml
T
Metal AgentandClaude Opus 5 401760d670 Generate the theme catalog from real themes instead of a hand table
The derivation landed in decision 0018 with the catalog and the terminal ANSI
palette still fixed tables written by hand. tools/theme-gen reads the
TextMate themes under assets/themes/ and emits the catalog and the reference
vectors, so the anchors a palette is derived from are the ones the theme
actually ships rather than the ones somebody transcribed.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SPYebLiN2w4TqnHUYGdECq
2026-09-01 12:51:25 -07:00

33 lines
725 B
TOML

[workspace]
members = [
"apps/lumbridge",
"crates/lumbridge-buzz",
"crates/lumbridge-core",
"crates/lumbridge-devices",
"crates/lumbridge-harness",
"crates/lumbridge-pty",
"crates/lumbridge-runtime",
"crates/lumbridge-settings",
"crates/lumbridge-storage",
"crates/lumbridge-terminal",
"crates/lumbridge-theme",
"crates/lumbridge-ui-fixture",
"tools/theme-gen",
]
exclude = ["spikes"]
resolver = "2"
[workspace.package]
version = "0.0.1"
edition = "2024"
rust-version = "1.94"
license = "Apache-2.0"
repository = "https://git.karti.ai/lumbridge-public/lumbridge-code"
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
all = "warn"
pedantic = "warn"