Server tools to backfill, tail, mirror, and verify PLC logs
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 37 lines 1.4 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.3.3" 6edition = "2024" 7default-run = "allegedly" 8 9[dependencies] 10anyhow = "1.0.99" 11async-compression = { version = "0.4.30", features = ["futures-io", "tokio", "gzip"] } 12bincode = { version = "2.0.1", features = ["derive"] } 13bytevec = "0.2.0" 14chrono = { version = "0.4.42", features = ["serde"] } 15clap = { version = "4.5.47", features = ["derive", "env"] } 16enum_dispatch = "0.3.13" 17futures = "0.3.31" 18governor = "0.10.1" 19http-body-util = "0.1.3" 20log = "0.4.28" 21native-tls = "0.2.14" 22poem = { version = "3.1.12", features = ["acme", "compression"] } 23postgres-native-tls = "0.5.1" 24reqwest = { version = "0.12.23", features = ["stream", "json", "gzip"] } 25reqwest-middleware = "0.4.2" 26reqwest-retry = "0.7.0" 27rocksdb = { version = "0.24.0", features = ["multi-threaded-cf", "serde"] } 28rustls = "0.23.32" 29serde = "1.0.219" 30serde_json = { version = "1.0.143", features = ["raw_value"] } 31thiserror = "2.0.16" 32tokio = { version = "1.47.1", features = ["full"] } 33tokio-postgres = { version = "0.7.13", features = ["with-chrono-0_4", "with-serde_json-1"] } 34tokio-stream = { version = "0.1.17", features = ["io-util"] } 35tokio-util = { version = "0.7.16", features = ["compat"] } 36tracing-subscriber = { version = "0.3.20", features = ["env-filter"] } 37trait-variant = "0.1.2"