[package]
edition = "2024"
name = "stackless-core"
version = "0.1.71"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Definition model, state store, and lifecycle engine for stackless"
readme = false
license = "MIT"
repository = "https://github.com/snowmead/stackless"
[lib]
name = "stackless_core"
path = "src/lib.rs"
[[test]]
name = "def"
path = "tests/def.rs"
[[test]]
name = "engine"
path = "tests/engine.rs"
[[test]]
name = "fleet_lock"
path = "tests/fleet_lock.rs"
[[test]]
name = "libsql_backend"
path = "tests/libsql_backend.rs"
[[test]]
name = "turso_fleet_lock"
path = "tests/turso_fleet_lock.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.libsql]
version = "0.9.30"
features = [
"core",
"remote",
"tls",
]
default-features = false
[dependencies.oxgraph]
version = "0.4.3"
features = [
"algo-alloc",
"graph-build",
]
[dependencies.rusqlite]
version = "0.40.1"
features = ["bundled"]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.sysinfo]
version = "0.39.3"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.52.3"
features = [
"rt",
"macros",
]
[dependencies.toml]
version = "1.1.2"
[dependencies.uuid]
version = "1.18.0"
features = ["v4"]
[dev-dependencies.tempfile]
version = "3.27.0"
[dev-dependencies.tokio]
version = "1.52.3"
features = [
"macros",
"rt-multi-thread",
]
[lints.clippy]
dbg_macro = "deny"
expect_used = "deny"
panic = "deny"
unwrap_used = "deny"
[lints.rust]
missing_debug_implementations = "warn"
unsafe_code = "forbid"