5ac33987c0
- Add tracing-appender and tracing-journald for production logging - Add LoggingConfig with trace_sample_rate, json_output, journald options - Expand init_logging() with file rotation, journald, and stderr layers - Add sanitize_path() helper for PII protection in logs - Instrument FUSE operations with #[instrument] and trace decision points - Instrument gRPC handlers (10 methods) with span correlation - Add spawn instrumentation for health monitor, indexer, watcher tasks - Add broadcast lag handling (RecvError::Lagged) in event subscribers - Fix webhook.rs expect() calls with proper error handling - Add logging to patterns.rs, collections.rs, artwork.rs database ops - Add Drop impl logging for PluginManager and WatchHandle - Update systemd service with rate limiting and journal output - Add logrotate config and example config.toml with logging section
28 lines
614 B
TOML
28 lines
614 B
TOML
[package]
|
|
name = "musicfs-grpc"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
musicfs-search = { path = "../musicfs-search" }
|
|
musicfs-core = { path = "../musicfs-core" }
|
|
tonic.workspace = true
|
|
prost.workspace = true
|
|
tokio.workspace = true
|
|
tokio-stream.workspace = true
|
|
tracing.workspace = true
|
|
thiserror.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
chrono.workspace = true
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
hmac = "0.12"
|
|
sha2 = "0.10"
|
|
hex.workspace = true
|
|
|
|
[build-dependencies]
|
|
tonic-build.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|