Replace polling-based sync detection with SSE (Server-Sent Events) from CAN service for instant push notifications on new asset ingests. Add incremental hash queries via ?since=timestamp parameter to avoid transferring full hash lists on every sync cycle. CAN service changes: - Add broadcast channel (SyncEventSender) in AppState for SSE events - Add GET /sync/events SSE endpoint with auth via header or query param - Fire broadcast events on both ingest and sync push - Add db::get_assets_since() for incremental queries - Support ?since= parameter on POST /sync/hashes can-sync agent changes: - Add SSE subscription with auto-reconnect in can_client - Add get_hashes_since() for incremental catch-up - Rewrite live push loop: SSE-driven with 30s fallback poll - Remove poll_interval parameter from live sync functions All 6 stress tests pass (102 assets, 63 MB/s bidirectional). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
54 lines
1.1 KiB
TOML
54 lines
1.1 KiB
TOML
[package]
|
|
name = "can-sync"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
description = "P2P sync agent for CAN service — full mirror replication via iroh"
|
|
|
|
[[bin]]
|
|
name = "can-sync"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "sync-test"
|
|
path = "tests/sync_test.rs"
|
|
|
|
[dependencies]
|
|
# P2P networking (iroh for transport + gossip for discovery — NO iroh-docs)
|
|
iroh = "0.96"
|
|
iroh-gossip = "0.96"
|
|
|
|
# Protobuf (same message types as CAN service sync API)
|
|
prost = "0.13"
|
|
|
|
# HTTP client for CAN service sync API
|
|
reqwest = { version = "0.12", features = ["json", "multipart", "blocking"] }
|
|
|
|
# Serialization
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_yaml = "0.9"
|
|
|
|
# Crypto
|
|
blake3 = "1"
|
|
|
|
# Async runtime
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
# Logging
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
# Stream utilities (needed for gossip event stream)
|
|
n0-future = "0.1"
|
|
|
|
# SSE client (for real-time events from CAN service)
|
|
tokio-stream = "0.1"
|
|
futures-util = "0.3"
|
|
|
|
# Utilities
|
|
anyhow = "1"
|
|
bytes = "1"
|
|
hex = "0.4"
|
|
serde_json = "1"
|
|
tempfile = "3"
|
|
rand = "0.9"
|