avoid duplicate crates

This commit is contained in:
Dimitris Apostolou
2025-02-24 22:06:37 +02:00
parent 32c7f83bd7
commit cc5941e919
3 changed files with 4 additions and 3 deletions

View File

@@ -56,6 +56,7 @@ urlencoding = "2.1.3"
uuid = { version = "1.10.0", features = ["v4"] }
security-framework = "2.11.0"
sha2 = "0.10.8"
pretty_assertions = "1.4.1"
[patch.crates-io]
egui = { git = "https://github.com/damus-io/egui", branch = "update_layouter_0.29.1" }

View File

@@ -7,8 +7,8 @@ edition = "2021"
[dependencies]
ewebsock = { version = "0.8.0", features = ["tls"] }
serde_derive = "1"
serde = { version = "1", features = ["derive"] } # You only need this if you want app persistence
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 }

View File

@@ -52,7 +52,7 @@ rfd = "0.15"
[dev-dependencies]
tempfile = { workspace = true }
pretty_assertions = "1.4.1"
pretty_assertions = { workspace = true }
[target.'cfg(target_os = "macos")'.dependencies]
security-framework = "2.11.0"