Server tools to backfill, tail, mirror, and verify PLC logs
at debug 32 lines 1.2 kB view raw
1[package] 2name = "allegedly" 3description = "public ledger server tools and services (for the PLC)" 4license = "MIT OR Apache-2.0" 5version = "0.2.0" 6edition = "2024" 7default-run = "allegedly" 8 9[dependencies] 10anyhow = "1.0.99" 11async-compression = { version = "0.4.30", features = ["futures-io", "tokio", "gzip"] } 12chrono = { version = "0.4.42", features = ["serde"] } 13clap = { version = "4.5.47", features = ["derive", "env"] } 14futures = "0.3.31" 15governor = "0.10.1" 16http-body-util = "0.1.3" 17log = "0.4.28" 18native-tls = "0.2.14" 19poem = { version = "3.1.12", features = ["acme", "compression"] } 20postgres-native-tls = "0.5.1" 21reqwest = { version = "0.12.23", features = ["stream", "json"] } 22reqwest-middleware = "0.4.2" 23reqwest-retry = "0.7.0" 24rustls = "0.23.32" 25serde = "1.0.219" 26serde_json = { version = "1.0.143", features = ["raw_value"] } 27thiserror = "2.0.16" 28tokio = { version = "1.47.1", features = ["full"] } 29tokio-postgres = { version = "0.7.13", features = ["with-chrono-0_4", "with-serde_json-1"] } 30tokio-stream = { version = "0.1.17", features = ["io-util"] } 31tokio-util = { version = "0.7.16", features = ["compat"] } 32tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }