notedeck

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

Cargo.toml (6138B)


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