Cargo.toml (5356B)
1 [workspace] 2 resolver = "2" 3 package.version = "0.5.9" 4 members = [ 5 "crates/notedeck", 6 "crates/notedeck_chrome", 7 "crates/notedeck_columns", 8 "crates/notedeck_dave", 9 "crates/notedeck_notebook", 10 "crates/notedeck_ui", 11 12 "crates/enostr", "crates/tokenator", "crates/notedeck_dave", "crates/notedeck_ui", 13 ] 14 15 [workspace.dependencies] 16 opener = "0.8.2" 17 chrono = "0.4.40" 18 base32 = "0.4.0" 19 base64 = "0.22.1" 20 rmpv = "1.3.0" 21 bech32 = { version = "0.11", default-features = false } 22 bitflags = "2.5.0" 23 dirs = "5.0.1" 24 eframe = { version = "0.31.1", default-features = false, features = [ "wgpu", "wayland", "x11", "android-game-activity" ] } 25 egui = { version = "0.31.1", features = ["serde"] } 26 egui-wgpu = "0.31.1" 27 egui_extras = { version = "0.31.1", features = ["all_loaders"] } 28 egui-winit = { version = "0.31.1", features = ["android-game-activity", "clipboard"] } 29 egui_nav = { git = "https://github.com/damus-io/egui-nav", rev = "3c67eb6298edbff36d46546897cfac33df4f04db" } 30 egui_tabs = { git = "https://github.com/damus-io/egui-tabs", rev = "6eb91740577b374a8a6658c09c9a4181299734d0" } 31 #egui_virtual_list = "0.6.0" 32 egui_virtual_list = { git = "https://github.com/jb55/hello_egui", rev = "a66b6794f5e707a2f4109633770e02b02fb722e1" } 33 ehttp = "0.5.0" 34 enostr = { path = "crates/enostr" } 35 ewebsock = { version = "0.2.0", features = ["tls"] } 36 fluent = "0.17.0" 37 fluent-resmgr = "0.0.8" 38 fluent-langneg = "0.13" 39 hex = "0.4.3" 40 image = { version = "0.25", features = ["jpeg", "png", "webp"] } 41 indexmap = "2.6.0" 42 log = "0.4.17" 43 md5 = "0.7.0" 44 nostr = { version = "0.37.0", default-features = false, features = ["std", "nip49"] } 45 nwc = "0.39.0" 46 mio = { version = "1.0.3", features = ["os-poll", "net"] } 47 nostrdb = { git = "https://github.com/damus-io/nostrdb-rs", rev = "2b2e5e43c019b80b98f1db6a03a1b88ca699bfa3" } 48 #nostrdb = "0.6.1" 49 notedeck = { path = "crates/notedeck" } 50 notedeck_chrome = { path = "crates/notedeck_chrome" } 51 notedeck_columns = { path = "crates/notedeck_columns" } 52 notedeck_dave = { path = "crates/notedeck_dave" } 53 notedeck_notebook = { path = "crates/notedeck_notebook" } 54 notedeck_ui = { path = "crates/notedeck_ui" } 55 tokenator = { path = "crates/tokenator" } 56 once_cell = "1.19.0" 57 robius-open = "0.1" 58 poll-promise = { version = "0.3.0", features = ["tokio"] } 59 puffin = { git = "https://github.com/jb55/puffin", package = "puffin", rev = "c6a6242adaf90b6292c0f462d2acd34d96d224d2" } 60 puffin_egui = { git = "https://github.com/jb55/puffin", package = "puffin_egui", rev = "c6a6242adaf90b6292c0f462d2acd34d96d224d2" } 61 serde = { version = "1", features = ["derive"] } # You only need this if you want app persistence 62 serde_derive = "1" 63 serde_json = "1.0.89" 64 strum = "0.26" 65 strum_macros = "0.26" 66 thiserror = "2.0.7" 67 tokio = { version = "1.16", features = ["macros", "rt-multi-thread", "fs"] } 68 tracing = { version = "0.1.40", features = ["log"] } 69 tracing-appender = "0.2.3" 70 tracing-subscriber = { version = "0.3", features = ["env-filter"] } 71 tempfile = "3.13.0" 72 unic-langid = { version = "0.9.6", features = ["macros"] } 73 url = "2.5.2" 74 urlencoding = "2.1.3" 75 uuid = { version = "1.10.0", features = ["v4"] } 76 sha2 = "0.10.8" 77 bincode = "1.3.3" 78 mime_guess = "2.0.5" 79 pretty_assertions = "1.4.1" 80 jni = "0.21.1" 81 profiling = "1.0" 82 lightning-invoice = "0.33.1" 83 secp256k1 = "0.30.0" 84 hashbrown = "0.15.2" 85 openai-api-rs = "6.0.3" 86 re_memory = "0.23.4" 87 oot_bitset = "0.1.1" 88 blurhash = "0.2.3" 89 90 91 [profile.small] 92 inherits = 'release' 93 opt-level = 'z' # Optimize for size 94 lto = true # Enable link-time optimization 95 codegen-units = 1 # Reduce number of codegen units to increase optimizations 96 panic = 'abort' # Abort on panic 97 strip = true # Strip symbols from binary* 98 99 100 [patch.crates-io] 101 #egui = { path = "/home/jb55/dev/github/emilk/egui/crates/egui" } 102 #eframe = { path = "/home/jb55/dev/github/emilk/egui/crates/eframe" } 103 #egui-winit = { path = "/home/jb55/dev/github/emilk/egui/crates/egui-winit" } 104 #egui_extras = { path = "/home/jb55/dev/github/emilk/egui/crates/egui_extras" } 105 #epaint = { path = "/home/jb55/dev/github/emilk/egui/crates/epaint" } 106 107 egui = { git = "https://github.com/damus-io/egui", rev = "a67ab901e197ce13948ff7d00aa6e07e31a68ccd" } 108 eframe = { git = "https://github.com/damus-io/egui", rev = "a67ab901e197ce13948ff7d00aa6e07e31a68ccd" } 109 egui-winit = { git = "https://github.com/damus-io/egui", rev = "a67ab901e197ce13948ff7d00aa6e07e31a68ccd" } 110 egui-wgpu = { git = "https://github.com/damus-io/egui", rev = "a67ab901e197ce13948ff7d00aa6e07e31a68ccd" } 111 egui_extras = { git = "https://github.com/damus-io/egui", rev = "a67ab901e197ce13948ff7d00aa6e07e31a68ccd" } 112 epaint = { git = "https://github.com/damus-io/egui", rev = "a67ab901e197ce13948ff7d00aa6e07e31a68ccd" } 113 puffin = { git = "https://github.com/jb55/puffin", package = "puffin", rev = "c6a6242adaf90b6292c0f462d2acd34d96d224d2" } 114 puffin_egui = { git = "https://github.com/jb55/puffin", package = "puffin_egui", rev = "c6a6242adaf90b6292c0f462d2acd34d96d224d2" } 115 #winit = { git = "https://github.com/damus-io/winit", rev = "14d61a74bee0c9863abe7ef28efae2c4d8bd3743" } 116 #winit = { path = "/home/jb55/dev/github/rust-windowing/winit" } 117 android-activity = { git = "https://github.com/damus-io/android-activity", rev = "a8948332c7c551303d32eb26a59d0abd676e47a5" } 118 #android-activity = { path = "/home/jb55/dev/github/rust-mobile/android-activity/android-activity" }