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