mirror of
https://github.com/aljazceru/notedeck.git
synced 2026-01-25 19:24:20 +01:00
before profile queries were not working at the database level, because there was no note_pubkey or note_pubkey_kind index. Now there is! So profiles should be much faster to query now, and will actually return results. There still appears to be an issue with the profile NotesHolder which is preventing it from updating, via the logic in poll_notes_into_view. The original Timeline version of this function works fine, but it looks like the NotesHolder one is broken. Going to work on refactoring the notes holder next to fix. Signed-off-by: William Casarin <jb55@jb55.com>
62 lines
2.3 KiB
TOML
62 lines
2.3 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"crates/notedeck",
|
|
"crates/notedeck_chrome",
|
|
"crates/notedeck_columns",
|
|
|
|
"crates/enostr",
|
|
]
|
|
|
|
[workspace.dependencies]
|
|
base32 = "0.4.0"
|
|
bech32 = { version = "0.11", default-features = false }
|
|
bitflags = "2.5.0"
|
|
dirs = "5.0.1"
|
|
eframe = { version = "0.29.1", default-features = false, features = [ "wgpu", "wayland", "x11", "android-native-activity" ] }
|
|
egui = { version = "0.29.1", features = ["serde"] }
|
|
egui_extras = { version = "0.29.1", features = ["all_loaders"] }
|
|
egui_nav = "0.2.0"
|
|
egui_tabs = "0.2.0"
|
|
egui_virtual_list = "0.5.0"
|
|
ehttp = "0.2.0"
|
|
enostr = { path = "crates/enostr" }
|
|
env_logger = "0.10.0"
|
|
ewebsock = { version = "0.2.0", features = ["tls"] }
|
|
hex = "0.4.3"
|
|
image = { version = "0.25", features = ["jpeg", "png", "webp"] }
|
|
indexmap = "2.6.0"
|
|
log = "0.4.17"
|
|
nostr = { version = "0.37.0", default-features = false, features = ["std", "nip49"] }
|
|
nostrdb = { git = "https://github.com/damus-io/nostrdb-rs", rev = "46ca13dffdfe2320d4488912506c7bfa02afe284" }
|
|
notedeck = { path = "crates/notedeck" }
|
|
notedeck_chrome = { path = "crates/notedeck_chrome" }
|
|
notedeck_columns = { path = "crates/notedeck_columns" }
|
|
open = "5.3.0"
|
|
poll-promise = { version = "0.3.0", features = ["tokio"] }
|
|
puffin = { git = "https://github.com/jb55/puffin", package = "puffin", rev = "70ff86d5503815219b01a009afd3669b7903a057" }
|
|
puffin_egui = { git = "https://github.com/jb55/puffin", package = "puffin_egui", rev = "70ff86d5503815219b01a009afd3669b7903a057" }
|
|
serde = { version = "1", features = ["derive"] } # You only need this if you want app persistence
|
|
serde_derive = "1"
|
|
serde_json = "1.0.89"
|
|
strum = "0.26"
|
|
strum_macros = "0.26"
|
|
thiserror = "2.0.6"
|
|
tokio = { version = "1.16", features = ["macros", "rt-multi-thread", "fs"] }
|
|
tracing = "0.1.40"
|
|
tracing-appender = "0.2.3"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
tempfile = "3.13.0"
|
|
url = "2.5.2"
|
|
urlencoding = "2.1.3"
|
|
uuid = { version = "1.10.0", features = ["v4"] }
|
|
security-framework = "2.11.0"
|
|
|
|
[profile.small]
|
|
inherits = 'release'
|
|
opt-level = 'z' # Optimize for size
|
|
lto = true # Enable link-time optimization
|
|
codegen-units = 1 # Reduce number of codegen units to increase optimizations
|
|
panic = 'abort' # Abort on panic
|
|
strip = true # Strip symbols from binary*
|