diff --git a/Cargo.toml b/Cargo.toml index 73da0bf5..4a36419a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" } diff --git a/crates/enostr/Cargo.toml b/crates/enostr/Cargo.toml index 436114da..574f7bbc 100644 --- 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 index 99f04906..aa0b8ef3 100644 --- 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"