[package]
edition = "2024"
rust-version = "1.95"
name = "entelix-session"
version = "0.5.5"
authors = ["junyeong-ai"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "entelix session — SessionGraph (event log), GraphEvent, fork, archival watermark"
documentation = "https://docs.rs/entelix"
readme = "README.md"
keywords = [
"ai",
"agent",
"llm",
"graph",
"runtime",
]
categories = [
"api-bindings",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/junyeong-ai/entelix"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "entelix_session"
path = "src/lib.rs"
[[test]]
name = "audit_replay_provider_echo"
path = "tests/audit_replay_provider_echo.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "codec_compaction_round_trip"
path = "tests/codec_compaction_round_trip.rs"
[[test]]
name = "external_compactor"
path = "tests/external_compactor.rs"
[[test]]
name = "namespace_isolation"
path = "tests/namespace_isolation.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.entelix-core]
version = "0.5.5"
[dependencies.parking_lot]
version = "0.12"
[dependencies.serde]
version = "1.0"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1.52"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
"io-util",
"signal",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1.52"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
"io-util",
"signal",
"macros",
"rt",
]
[lints.clippy]
await_holding_lock = "deny"
await_holding_refcell_ref = "deny"
dbg_macro = "deny"
duration_suboptimal_units = "allow"
expect_used = "warn"
indexing_slicing = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
print_stderr = "deny"
print_stdout = "deny"
return_self_not_must_use = "allow"
similar_names = "warn"
struct_excessive_bools = "warn"
todo = "warn"
unimplemented = "warn"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
[lints.rust.rust_2024_compatibility]
level = "warn"
priority = -1
[lints.rustdoc]
bare_urls = "deny"
broken_intra_doc_links = "deny"
invalid_codeblock_attributes = "deny"
invalid_html_tags = "deny"
invalid_rust_codeblocks = "deny"
private_intra_doc_links = "deny"
unescaped_backticks = "deny"