mcpr-integrations 0.4.70

External integrations for mcpr: cloud event sink, API client, and SQLite request storage
Documentation
[package]
name = "mcpr-integrations"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "External integrations for mcpr: cloud event sink, API client, and SQLite request storage"

[dependencies]
mcpr-core = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
chrono = { workspace = true }
uuid = { workspace = true }
reqwest = { workspace = true }
tokio = { workspace = true }

# SQLite with bundled feature — compiles SQLite from C source into the binary.
# Zero system dependencies: no libsqlite3 required on the host.
rusqlite = { version = "0.31", features = ["bundled"] }

# Platform-specific default paths (XDG on Linux, ~/Library on macOS, %APPDATA% on Windows).
dirs = "6"

# SHA-256 hashing for schema change detection.
sha2 = { workspace = true }

# Structured logging for the background storage writer.
tracing = "0.1"

[dev-dependencies]
wiremock = "0.6"
tokio = { workspace = true, features = ["test-util", "macros"] }
tempfile = "3"
toml = "1.1"