notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit fb4b682919006ccacdd7b3371ba9a9351e931e46
parent 469868dd536291653f86b6bf187aadcd3146cefe
Author: kernelkind <kernelkind@gmail.com>
Date:   Thu, 18 Dec 2025 17:15:55 -0500

feat(cargo): add messages deps

Signed-off-by: kernelkind <kernelkind@gmail.com>

Diffstat:
MCargo.lock | 13+++++++++++++
Mcrates/notedeck_messages/Cargo.toml | 13+++++++++++++
2 files changed, 26 insertions(+), 0 deletions(-)

diff --git a/Cargo.lock b/Cargo.lock @@ -4061,8 +4061,21 @@ dependencies = [ name = "notedeck_messages" version = "0.7.1" dependencies = [ + "chrono", "egui", + "egui_extras", + "egui_nav", + "egui_virtual_list", + "enostr", + "hashbrown 0.15.4", + "nostr 0.37.0", + "nostrdb", "notedeck", + "notedeck_ui", + "profiling", + "tempfile", + "tracing", + "uuid", ] [[package]] diff --git a/crates/notedeck_messages/Cargo.toml b/crates/notedeck_messages/Cargo.toml @@ -7,4 +7,17 @@ license = "GPL-3.0-or-later" [dependencies] egui = { workspace = true } +egui_extras = { workspace = true } +egui_virtual_list = { workspace = true } +enostr = { workspace = true } +hashbrown = { workspace = true } notedeck = { workspace = true } +nostrdb = { workspace = true } +profiling = { workspace = true } +tracing = { workspace = true } +uuid = { workspace = true } +tempfile = { workspace = true } +notedeck_ui = { workspace = true } +chrono = { workspace = true } +nostr = { workspace = true } +egui_nav = { workspace = true }