mirror of
https://github.com/aljazceru/notedeck.git
synced 2025-12-18 09:04:21 +01:00
23 lines
728 B
TOML
23 lines
728 B
TOML
[package]
|
|
name = "enostr"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
ewebsock = { version = "0.8.0", features = ["tls"] }
|
|
serde_derive = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] } # You only need this if you want app persistence
|
|
serde_json = { workspace = true }
|
|
nostr = { workspace = true }
|
|
bech32 = { workspace = true }
|
|
nostrdb = { workspace = true }
|
|
hex = { workspace = true }
|
|
tracing = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
url = { workspace = true }
|
|
mio = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokenator = { workspace = true }
|
|
hashbrown = { workspace = true } |