Cargo.toml (2470B)
1 [workspace] 2 resolver = "2" 3 members = [ 4 "crates/notedeck", 5 "crates/notedeck_chrome", 6 "crates/notedeck_columns", 7 8 "crates/enostr", 9 ] 10 11 [workspace.dependencies] 12 base32 = "0.4.0" 13 bech32 = { version = "0.11", default-features = false } 14 bitflags = "2.5.0" 15 dirs = "5.0.1" 16 eframe = { version = "0.29.1", default-features = false, features = [ "wgpu", "wayland", "x11", "android-native-activity" ] } 17 egui = { version = "0.29.1", features = ["serde"] } 18 egui_extras = { version = "0.29.1", features = ["all_loaders"] } 19 egui_nav = { git = "https://github.com/damus-io/egui-nav", rev = "8a0508e17b02e382c04b4c3f724713a6b7807819" } 20 egui_tabs = "0.2.0" 21 egui_virtual_list = "0.5.0" 22 ehttp = "0.2.0" 23 enostr = { path = "crates/enostr" } 24 ewebsock = { version = "0.2.0", features = ["tls"] } 25 hex = "0.4.3" 26 image = { version = "0.25", features = ["jpeg", "png", "webp"] } 27 indexmap = "2.6.0" 28 log = "0.4.17" 29 nostr = { version = "0.37.0", default-features = false, features = ["std", "nip49"] } 30 mio = { version = "1.0.3", features = ["os-poll", "net"] } 31 nostrdb = { git = "https://github.com/damus-io/nostrdb-rs", rev = "2111948b078b24a1659d0bd5d8570f370269c99b" } 32 #nostrdb = "0.5.2" 33 notedeck = { path = "crates/notedeck" } 34 notedeck_chrome = { path = "crates/notedeck_chrome" } 35 notedeck_columns = { path = "crates/notedeck_columns" } 36 open = "5.3.0" 37 poll-promise = { version = "0.3.0", features = ["tokio"] } 38 puffin = { git = "https://github.com/jb55/puffin", package = "puffin", rev = "70ff86d5503815219b01a009afd3669b7903a057" } 39 puffin_egui = { git = "https://github.com/jb55/puffin", package = "puffin_egui", rev = "70ff86d5503815219b01a009afd3669b7903a057" } 40 serde = { version = "1", features = ["derive"] } # You only need this if you want app persistence 41 serde_derive = "1" 42 serde_json = "1.0.89" 43 strum = "0.26" 44 strum_macros = "0.26" 45 thiserror = "2.0.7" 46 tokio = { version = "1.16", features = ["macros", "rt-multi-thread", "fs"] } 47 tracing = "0.1.40" 48 tracing-appender = "0.2.3" 49 tracing-subscriber = { version = "0.3", features = ["env-filter"] } 50 tempfile = "3.13.0" 51 url = "2.5.2" 52 urlencoding = "2.1.3" 53 uuid = { version = "1.10.0", features = ["v4"] } 54 security-framework = "2.11.0" 55 56 [profile.small] 57 inherits = 'release' 58 opt-level = 'z' # Optimize for size 59 lto = true # Enable link-time optimization 60 codegen-units = 1 # Reduce number of codegen units to increase optimizations 61 panic = 'abort' # Abort on panic 62 strip = true # Strip symbols from binary*