[package]
edition = "2021"
rust-version = "1.82"
name = "hotl-engine"
version = "0.3.0"
authors = ["nrakochy"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Internal component of hotl - no semver promise; pin exact or don't depend. L3 turn engine, M0 slice: sample→tools loop, max_turns, cancellation."
homepage = "https://github.com/nrakochy/hotl"
readme = "INTERNAL.md"
license = "AGPL-3.0-or-later"
repository = "https://github.com/nrakochy/hotl"
[lib]
name = "hotl_engine"
path = "src/lib.rs"
[[test]]
name = "interrupt"
path = "tests/interrupt.rs"
[[test]]
name = "rename"
path = "tests/rename.rs"
[[test]]
name = "speculation"
path = "tests/speculation.rs"
[dependencies.futures-util]
version = "0.3"
[dependencies.hotl-context]
version = "0.3.0"
[dependencies.hotl-platform]
version = "0.3.0"
[dependencies.hotl-provider]
version = "0.3.0"
[dependencies.hotl-store]
version = "0.3.0"
[dependencies.hotl-tools]
version = "0.3.0"
[dependencies.hotl-types]
version = "0.3.0"
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"process",
"io-util",
"io-std",
"signal",
"time",
"fs",
"sync",
]
[dependencies.tokio-util]
version = "0.7"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"process",
"io-util",
"io-std",
"signal",
"time",
"fs",
"sync",
"test-util",
]