tangle_indexer


git clone https://radroots.dev/git/tangle_indexer.git
Log | Files | Refs | Submodules | LICENSE

Cargo.toml (908B)


      1 [workspace]
      2 members = [
      3     "indexer",
      4 ]
      5 resolver = "2"
      6 
      7 [workspace.package]
      8 version = "0.1.0"
      9 edition = "2024"
     10 rust-version = "1.88.0"
     11 license = "AGPL-3.0"
     12 
     13 [workspace.dependencies]
     14 radroots-core = { path = "../crates/core" }
     15 radroots-events = { path = "../crates/events" }
     16 radroots-events-codec = { path = "../crates/events-codec" }
     17 radroots-events-indexed = { path = "../crates/events-indexed" }
     18 radroots-nostr = { path = "../crates/nostr" }
     19 
     20 anyhow = { version = "1" }
     21 clap = { version = "4", features = ["derive"] }
     22 config = { version = "0.15" }
     23 serde = { version = "1", features = ["derive"] }
     24 serde_json = { version = "1" }
     25 thiserror = { version = "1" }
     26 tokio = { version = "1", features = ["full"] }
     27 tracing = { version = "0.1" }
     28 tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
     29 tracing-appender = { version = "0.2" }
     30 once_cell = { version = "1" }
     31 regex = { version = "1" }