[package]
edition = "2024"
name = "aether-sessions"
version = "0.1.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Persisted session logs and transcript reconstruction for Aether"
readme = "README.md"
keywords = [
"aether",
"sessions",
"transcripts",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/contextbridge/aether"
[features]
analytics = [
"dep:chrono",
"dep:futures",
"dep:sqlx",
"dep:tokio",
]
default = []
[lib]
name = "aether_sessions"
path = "src/lib.rs"
[[test]]
name = "analytics"
path = "tests/analytics.rs"
[[test]]
name = "log"
path = "tests/log.rs"
[[test]]
name = "model"
path = "tests/model.rs"
[[test]]
name = "store"
path = "tests/store.rs"
[[test]]
name = "transcript"
path = "tests/transcript.rs"
[dependencies.acp_utils]
version = "0.3.40"
default-features = false
package = "aether-acp-utils"
[dependencies.aether-core]
version = "0.6.34"
package = "aether-agent-core"
[dependencies.chrono]
version = "^0.4.45"
features = ["serde"]
optional = true
[dependencies.futures]
version = "^0.3.32"
optional = true
[dependencies.llm]
version = "0.7.29"
package = "aether-llm"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.sqlx]
version = "0.9"
features = [
"runtime-tokio",
"sqlite",
"macros",
"migrate",
]
optional = true
default-features = false
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "^1.52.3"
features = [
"macros",
"rt-multi-thread",
"time",
]
optional = true
[dependencies.tracing]
version = "0.1.44"
[dependencies.utils]
version = "0.2.13"
package = "aether-utils"
[dev-dependencies.tempfile]
version = "3.27"
[lints.clippy]
absolute_paths = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
pub_underscore_fields = "allow"
return_self_not_must_use = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1