[package]
edition = "2024"
rust-version = "1.90"
name = "lilo-rm-core"
version = "0.2.0"
authors = ["Stuart Robinson"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime Matters core protocol types and JSON line wire contract for rtmd clients"
homepage = "https://github.com/littleorgans/runtime-matters"
readme = "README.md"
keywords = [
"runtime",
"protocol",
"agents",
"helioy",
"lilo",
]
categories = [
"api-bindings",
"development-tools",
]
license = "MIT"
repository = "https://github.com/littleorgans/runtime-matters"
[lib]
name = "lilo_rm_core"
path = "src/lib.rs"
[[test]]
name = "serde_snapshots"
path = "tests/serde_snapshots.rs"
[[test]]
name = "tool_contract_snapshots"
path = "tests/tool_contract_snapshots.rs"
[dependencies.chrono]
version = "0.4.42"
features = [
"clock",
"serde",
]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.tokio]
version = "1.48.0"
features = [
"fs",
"io-std",
"io-util",
"macros",
"net",
"process",
"rt-multi-thread",
"signal",
"sync",
"time",
]
[dependencies.toml]
version = "0.8.23"
[dependencies.uuid]
version = "1.18.1"
features = [
"serde",
"v7",
]
[dev-dependencies.insta]
version = "1.43.2"
features = [
"json",
"redactions",
]