Jesús Pérez fe4d138a14
Some checks failed
Rust CI / Security Audit (push) Has been cancelled
Rust CI / Check + Test + Lint (nightly) (push) Has been cancelled
Rust CI / Check + Test + Lint (stable) (push) Has been cancelled
feat: CLI arguments, distribution management, and approval gates
- Add CLI support (--config, --help) with env var override for backend/agents
  - Implement distro justfile recipes: list-targets, install-targets, build-target, install
  - Fix OpenTelemetry API incompatibilities and remove deprecated calls
  - Add tokio "time" feature for timeout support
  - Fix Cargo profile warnings and Nushell script syntax
  - Update all dead_code warnings with strategic annotations
  - Zero compiler warnings in vapora codebase
  - Comprehensive CHANGELOG documenting risk-based approval gates system
2026-02-03 21:35:00 +00:00

62 lines
1.3 KiB
TOML

[package]
name = "vapora-tracking"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
description = "VAPORA integration adapter for tracking-core library"
[lib]
name = "vapora_tracking"
path = "src/lib.rs"
[dependencies]
# Core tracking library (standalone, from /Users/Akasha/Tools/tracking-manager)
tracking-core = { path = "../../../../Tools/tracking-manager/crates/tracking-core" }
# VAPORA dependencies
vapora-shared = { path = "../vapora-shared" }
# Serialization
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
# Async runtime
tokio = { workspace = true }
futures = { workspace = true }
# Logging & observability
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
# Error handling
thiserror = { workspace = true }
anyhow = { workspace = true }
# Time and UUID
chrono = { workspace = true }
uuid = { workspace = true }
# Optional NATS integration for event streaming
async-nats = { workspace = true, optional = true }
[dev-dependencies]
mockito = { workspace = true }
criterion = { workspace = true }
tempfile = { workspace = true }
[features]
default = []
test-util = []
[[bench]]
name = "parser_bench"
harness = false
[[bench]]
name = "storage_bench"
harness = false