[package]
edition = "2024"
rust-version = "1.85"
name = "runlet"
version = "0.1.0"
authors = ["Daniel Kovacs"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A semantic executable model for the Runlet orchestration language"
homepage = "https://github.com/danielkov/runlet"
documentation = "https://docs.rs/runlet"
readme = "README.md"
keywords = [
"agents",
"llm",
"orchestration",
"language",
"runtime",
]
categories = [
"development-tools",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/danielkov/runlet"
[lib]
name = "runlet"
path = "src/lib.rs"
[[bin]]
name = "runlet"
path = "src/main.rs"
[[test]]
name = "backoff"
path = "tests/backoff.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "core_examples"
path = "tests/core_examples.rs"
[[test]]
name = "e2e_programs"
path = "tests/e2e_programs.rs"
[[test]]
name = "editor_support"
path = "tests/editor_support.rs"
[[test]]
name = "heal"
path = "tests/heal.rs"
[[test]]
name = "semantic_model"
path = "tests/semantic_model.rs"
[dependencies.hex]
version = "0.4"
[dependencies.regex]
version = "1"
[dependencies.ryu]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2"
[dependencies.unicode-ident]
version = "1"
[dev-dependencies.pretty_assertions]
version = "1"