[package]
edition = "2024"
rust-version = "1.85"
name = "trace-share-core"
version = "0.0.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core pipeline library for collecting, sanitizing, and publishing coding-agent trace episodes."
homepage = "https://github.com/frumu-ai/trace-share"
documentation = "https://github.com/frumu-ai/trace-share/tree/main/docs"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/frumu-ai/trace-share"
resolver = "2"
[lib]
name = "trace_share_core"
path = "src/lib.rs"
[[test]]
name = "dedupe"
path = "tests/dedupe.rs"
[[test]]
name = "registry_manifest"
path = "tests/registry_manifest.rs"
[[test]]
name = "retries_state"
path = "tests/retries_state.rs"
[[test]]
name = "revocation_sync"
path = "tests/revocation_sync.rs"
[[test]]
name = "snapshot_builder"
path = "tests/snapshot_builder.rs"
[[test]]
name = "snapshot_publish"
path = "tests/snapshot_publish.rs"
[[test]]
name = "worker_presigned"
path = "tests/worker_presigned.rs"
[dependencies.anyhow]
version = "1"
[dependencies.blake3]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.directories]
version = "5"
[dependencies.glob]
version = "0.3"
[dependencies.ignore]
version = "0.4"
[dependencies.rand]
version = "0.8"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"time",
]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dependencies.zstd]
version = "0.13"
[dev-dependencies.serial_test]
version = "3"