noteguard

the nostr relay spam guardian
git clone git://jb55.com/noteguard
Log | Files | Refs | README | LICENSE

Cargo.toml (537B)


      1 [package]
      2 name = "noteguard"
      3 version = "0.1.0"
      4 edition = "2021"
      5 
      6 [features]
      7 forwarder = ["tokio-tungstenite", "tokio", "futures-util"]
      8 
      9 [dependencies]
     10 serde = { version = "1.0", features = ["derive"] }
     11 serde_json = "1.0"
     12 toml = "0.5"
     13 
     14 # forwarder deps
     15 tokio-tungstenite = { version = "0.23.1", optional = true, features = ["native-tls"] }
     16 tokio = { version = "1.38.0", features = ["macros", "time", "sync", "rt-multi-thread"], optional = true }
     17 futures-util = { version = "0.3.30", optional = true }
     18 log = "0.4.22"
     19 env_logger = "0.11.3"