[package]
edition = "2024"
name = "rustack-core"
version = "0.6.0"
authors = ["Tyr Chen <tyr.chen@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types, configuration, and state management for Rustack"
readme = false
license = "MIT"
repository = "https://github.com/tyrchen/rustack"
[lib]
name = "rustack_core"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.dashmap]
version = "6.1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.22"
features = ["v4"]
[dev-dependencies.tokio]
version = "1.50"
features = [
"rt-multi-thread",
"macros",
"signal",
"sync",
"time",
"io-util",
"fs",
"net",
]
[lints.clippy]
collapsible_if = "allow"
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"