nostr-backup-util/Cargo.toml

15 lines
440 B
TOML
Raw Permalink Normal View History

2024-09-29 14:47:24 +01:00
[package]
2024-12-11 13:38:04 +00:00
name = "nostr-cursor"
2024-09-29 14:47:24 +01:00
version = "0.1.0"
edition = "2021"
[dependencies]
2024-12-11 13:38:04 +00:00
log = "0.4.22"
2024-09-29 14:47:24 +01:00
anyhow = "1.0.89"
2024-12-11 13:38:04 +00:00
hex = "0.4.3"
2024-09-29 14:47:24 +01:00
serde = { version = "1.0.210", features = ["derive"] }
tokio = { version = "1.40.0", features = ["rt", "rt-multi-thread", "macros", "fs", "io-util"] }
serde_json = "1.0.128"
async-compression = { version = "0.4.12", features = ["tokio", "gzip", "zstd", "bzip2"] }
2024-09-30 18:16:43 +01:00
tokio-stream = "0.1.16"
2024-12-11 13:38:04 +00:00
async-stream = "0.3.5"