fluers-runtime 0.6.0

The Fluers agent harness: agent definition, sessions, skills, sandbox, events
Documentation
[package]
name = "fluers-runtime"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
description = "The Fluers agent harness: agent definition, sessions, skills, sandbox, events"
keywords = ["agent", "llm", "ai", "harness", "sandbox"]
categories = ["science", "api-bindings"]

[lints]
workspace = true

[dependencies]
fluers-core.workspace = true
serde.workspace = true
serde_json.workspace = true
async-trait.workspace = true
tokio.workspace = true
tracing.workspace = true
thiserror.workspace = true
uuid.workspace = true
chrono.workspace = true
parking_lot.workspace = true
tokio-util.workspace = true
# B-Swift Phase C1a / #4: fd-anchored reads (`openat` + `O_NOFOLLOW` + `fstat`).
# Chosen over `nix` because this crate is `#![forbid(unsafe_code)]` and rustix's
# `openat`/`fstat` return `OwnedFd`/`Stat` directly (no `RawFd` → no `unsafe`).
# Already a transitive dep via tokio, so this adds no build weight.
rustix = { workspace = true, features = ["fs"] }

[dev-dependencies]
tempfile = "3"