commit d3bae694651a61414d95ed3200a751c2fbd49ac4
parent 95affa224529107a91c1535de9a4db151b03d84a
Author: William Casarin <jb55@jb55.com>
Date: Fri, 28 Feb 2025 15:26:22 -0800
Merge avoid duplicate crates by rex4539 #746
Diffstat:
3 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
@@ -58,6 +58,7 @@ security-framework = "2.11.0"
sha2 = "0.10.8"
bincode = "1.3.3"
mime_guess = "2.0.5"
+pretty_assertions = "1.4.1"
[patch.crates-io]
egui = { git = "https://github.com/damus-io/egui", branch = "update_layouter_0.29.1" }
diff --git a/crates/enostr/Cargo.toml b/crates/enostr/Cargo.toml
@@ -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 }
diff --git a/crates/notedeck_columns/Cargo.toml b/crates/notedeck_columns/Cargo.toml
@@ -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"