This was preventing us from building on windows amd Closes: https://github.com/damus-io/notedeck/pull/567 Signed-off-by: kernelkind <kernelkind@gmail.com> Signed-off-by: William Casarin <jb55@jb55.com>
20 lines
587 B
TOML
20 lines
587 B
TOML
[package]
|
|
name = "enostr"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
ewebsock = { version = "0.2.0", features = ["tls"] }
|
|
serde_derive = "1"
|
|
serde = { version = "1", 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 }
|