[package]
edition = "2024"
rust-version = "1.95"
name = "talos-session"
version = "0.8.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "JSONL-based session logging for Talos agent conversations"
homepage = "https://github.com/wjhuang88/talos"
readme = false
license = "Apache-2.0"
repository = "https://github.com/wjhuang88/talos"
[features]
archive-compress-zstd = ["dep:zstd"]
default = ["archive-compress-zstd"]
[lib]
name = "talos_session"
path = "src/lib.rs"
[[test]]
name = "i168_terminal_diagnostic"
path = "tests/i168_terminal_diagnostic.rs"
[[test]]
name = "i169_runtime_identity"
path = "tests/i169_runtime_identity.rs"
[[test]]
name = "i169_session_artifact_cleanup"
path = "tests/i169_session_artifact_cleanup.rs"
[[test]]
name = "i169_turn_outcome"
path = "tests/i169_turn_outcome.rs"
[[test]]
name = "i173_source_layout"
path = "tests/i173_source_layout.rs"
[[test]]
name = "i178_source_layout"
path = "tests/i178_source_layout.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.hex]
version = "0.4"
[dependencies.rusqlite]
version = "0.40"
features = ["bundled"]
[dependencies.schemars]
version = "1.2.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dependencies.talos-core]
version = "0.8.0"
[dependencies.thiserror]
version = "2"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dependencies.zstd]
version = "0.13"
optional = true
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
]
[lints.clippy]
unwrap_used = "warn"