notedeck

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

Cargo.toml (3560B)


      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.30.0", default-features = false, features = [ "wgpu", "wayland", "x11", "android-game-activity" ] }
     20 egui = { version = "0.30.0", features = ["serde"] }
     21 egui_extras = { version = "0.30.0", features = ["all_loaders"] }
     22 egui-winit = { version = "0.30.0", features = ["android-game-activity"] }
     23 egui_nav = { git = "https://github.com/damus-io/egui-nav", rev = "eb297a0fefd9047352102346625a2eba93a1aa04" }
     24 egui_tabs = { git = "https://github.com/damus-io/egui-tabs", rev = "5d0bacc6ce2c645fe8a77723d2beb0f85b8148ee" }
     25 egui_virtual_list = "0.6.0"
     26 ehttp = "0.5.0"
     27 enostr = { path = "crates/enostr" } 
     28 ewebsock = { version = "0.2.0", features = ["tls"] }
     29 hex = "0.4.3"
     30 image = { version = "0.25", features = ["jpeg", "png", "webp"] }
     31 indexmap = "2.6.0"
     32 log = "0.4.17"
     33 nostr = { version = "0.37.0", default-features = false, features = ["std", "nip49"] }
     34 mio = { version = "1.0.3", features = ["os-poll", "net"] }
     35 nostrdb = { git = "https://github.com/damus-io/nostrdb-rs", rev = "413d7f7e52937774cfc3a0356c8a7788437eecf8" }
     36 #nostrdb = "0.5.2"
     37 notedeck = { path = "crates/notedeck" }
     38 notedeck_chrome = { path = "crates/notedeck_chrome" }
     39 notedeck_columns = { path = "crates/notedeck_columns" }
     40 tokenator = { path = "crates/tokenator" }
     41 open = "5.3.0"
     42 poll-promise = { version = "0.3.0", features = ["tokio"] }
     43 puffin = { git = "https://github.com/jb55/puffin", package = "puffin", rev = "70ff86d5503815219b01a009afd3669b7903a057" }
     44 puffin_egui = { git = "https://github.com/jb55/puffin", package = "puffin_egui", rev = "70ff86d5503815219b01a009afd3669b7903a057" }
     45 serde = { version = "1", features = ["derive"] } # You only need this if you want app persistence
     46 serde_derive = "1"
     47 serde_json = "1.0.89"
     48 strum = "0.26"
     49 strum_macros = "0.26"
     50 thiserror = "2.0.7"
     51 tokio = { version = "1.16", features = ["macros", "rt-multi-thread", "fs"] }
     52 tracing = { version = "0.1.40", features = ["log"] }
     53 tracing-appender = "0.2.3"
     54 tracing-subscriber = { version = "0.3", features = ["env-filter"] }
     55 tempfile = "3.13.0"
     56 url = "2.5.2"
     57 urlencoding = "2.1.3"
     58 uuid = { version = "1.10.0", features = ["v4"] }
     59 security-framework = "2.11.0"
     60 sha2 = "0.10.8"
     61 bincode = "1.3.3"
     62 mime_guess = "2.0.5"
     63 pretty_assertions = "1.4.1"
     64 jni = "0.21.1"
     65 
     66 [profile.small]
     67 inherits = 'release'
     68 opt-level = 'z'     # Optimize for size
     69 lto = true          # Enable link-time optimization
     70 codegen-units = 1   # Reduce number of codegen units to increase optimizations
     71 panic = 'abort'     # Abort on panic
     72 strip = true        # Strip symbols from binary*
     73 
     74 
     75 [patch.crates-io]
     76 egui = { git = "https://github.com/damus-io/egui", rev = "732f783a560a807a7e3381c119223c1d7dbfca06" }
     77 eframe = { git = "https://github.com/damus-io/egui", rev = "732f783a560a807a7e3381c119223c1d7dbfca06" }
     78 egui-winit = { git = "https://github.com/damus-io/egui", rev = "732f783a560a807a7e3381c119223c1d7dbfca06" }
     79 egui_extras = { git = "https://github.com/damus-io/egui", rev = "732f783a560a807a7e3381c119223c1d7dbfca06" }
     80 epaint = { git = "https://github.com/damus-io/egui", rev = "732f783a560a807a7e3381c119223c1d7dbfca06" }
     81 android-activity = { git = "https://github.com/damus-io/android-activity", rev = "cd44ea0f1018f030bb3ef5ed738d5f5b174f3b59" }