[package]
edition = "2024"
rust-version = "1.90"
name = "lashlang"
version = "0.1.0-alpha.40"
authors = ["Samuel Galanakis"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lashlang: compact CodeAct language for model-authored REPL blocks in the lash agent runtime."
homepage = "https://samgalanakis.github.io/lash/"
documentation = "https://samgalanakis.github.io/lash/"
readme = "README.md"
keywords = [
"lash",
"lashlang",
"agent",
"codeact",
"llm",
]
categories = [
"asynchronous",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/SamGalanakis/lash"
[lib]
name = "lashlang"
path = "src/lib.rs"
[[example]]
name = "perf"
path = "examples/perf.rs"
[[example]]
name = "profile"
path = "examples/profile.rs"
[[test]]
name = "benchmark_contract"
path = "tests/benchmark_contract.rs"
[[test]]
name = "language"
path = "tests/language.rs"
[[test]]
name = "property"
path = "tests/property.rs"
[[test]]
name = "rlm_prompt_claims"
path = "tests/rlm_prompt_claims.rs"
[[test]]
name = "stack_budget"
path = "tests/stack_budget.rs"
[[bench]]
name = "benchmark"
path = "benches/benchmark.rs"
harness = false
[dependencies.async-trait]
version = "0.1"
[dependencies.compact_str]
version = "0.9.0"
features = ["serde"]
[dependencies.futures-executor]
version = "0.3"
[dependencies.rustc-hash]
version = "2"
[dependencies.serde]
version = "1"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.smallvec]
version = "1"
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.5"
features = ["async_tokio"]
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.insta]
version = "1"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"time",
]