[package]
edition = "2021"
name = "runtimo-core"
version = "0.7.2"
authors = ["Moe Shawky"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent-centric capability runtime with telemetry, process tracking, and crash recovery"
readme = false
keywords = [
"agent",
"runtime",
"telemetry",
"capability",
"recovery",
]
categories = [
"os",
"development-tools",
]
license = "MIT"
repository = "https://github.com/moeshawky/runtimo"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "runtimo_core"
path = "src/lib.rs"
[[example]]
name = "basic_read"
path = "examples/basic_read.rs"
[[example]]
name = "sift_test"
path = "examples/sift_test.rs"
[[example]]
name = "telemetry_demo"
path = "examples/telemetry_demo.rs"
[[example]]
name = "write_and_undo"
path = "examples/write_and_undo.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "robust"
path = "tests/robust.rs"
[dependencies.libc]
version = "0.2"
[dependencies.llmosafe]
version = "0.7.7"
features = [
"std",
"dal",
]
default-features = false
[dependencies.log]
version = "0.4"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.toml]
version = "0.8"
[dependencies.unicode-normalization]
version = "0.1"
[dev-dependencies.anyhow]
version = "1.0"
[dev-dependencies.proptest]
version = "1.4"
[lints.clippy]
arithmetic_side_effects = "warn"
cast_lossless = "allow"
cast_possible_truncation = "warn"
cast_possible_wrap = "warn"
cast_precision_loss = "warn"
derive_partial_eq_without_eq = "warn"
doc_markdown = "allow"
doc_paragraphs_missing_punctuation = "allow"
exhaustive_enums = "warn"
exhaustive_structs = "warn"
expect_used = "warn"
float_cmp = "warn"
indexing_slicing = "warn"
map_err_ignore = "deny"
min_ident_chars = "allow"
missing_const_for_fn = "allow"
missing_docs_in_private_items = "allow"
missing_errors_doc = "warn"
missing_inline_in_public_items = "allow"
missing_panics_doc = "warn"
module_name_repetitions = "allow"
must_use_candidate = "warn"
needless_pass_by_value = "allow"
option_if_let_else = "allow"
redundant_closure_for_method_calls = "allow"
significant_drop_tightening = "allow"
similar_names = "allow"
undocumented_unsafe_blocks = "deny"
uninlined_format_args = "allow"
unnecessary_wraps = "allow"
unreadable_literal = "allow"
unused_result_ok = "warn"
unwrap_used = "warn"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1