[package]
edition = "2021"
rust-version = "1.85"
name = "octl-core"
version = "0.1.5"
authors = ["Jari Mustonen"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for orchestratectl (schema, file I/O, locking, supervisor protocol)."
homepage = "https://github.com/jarimustonen/orchestratectl"
readme = false
license = "MIT"
repository = "https://github.com/jarimustonen/orchestratectl"
[lib]
name = "octl_core"
path = "src/lib.rs"
[[test]]
name = "reducer_snapshots"
path = "tests/reducer_snapshots.rs"
[[test]]
name = "reducer_state_machine"
path = "tests/reducer_state_machine.rs"
[[bench]]
name = "idempotency_scan"
path = "benches/idempotency_scan.rs"
harness = false
[dependencies.chrono]
version = "0.4"
features = [
"serde",
"clock",
]
default-features = false
[dependencies.fs4]
version = "1"
features = ["sync"]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dependencies.ulid]
version = "1"
[dev-dependencies.insta]
version = "1"
features = [
"json",
"filters",
]
[dev-dependencies.tempfile]
version = "3"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
items_after_statements = "allow"
manual_let_else = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
struct_field_names = "allow"
too_many_lines = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1