Cargo.toml (578B)
1 [package] 2 name = "enostr" 3 version = "0.1.0" 4 edition = "2021" 5 6 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 8 [dependencies] 9 ewebsock = { version = "0.2.0", features = ["tls"] } 10 serde_derive = "1" 11 serde = { version = "1", features = ["derive"] } # You only need this if you want app persistence 12 serde_json = "1.0.89" 13 nostr = { version = "0.30.0" } 14 nostrdb = { git = "https://github.com/damus-io/nostrdb-rs", rev = "9bbafd8a2e904b77a51e7cfca71eb5bb5650e829" } 15 hex = "0.4.3" 16 tracing = "0.1.40" 17 env_logger = "0.11.1" 18 url = "2.5.2"