notedeck

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

Cargo.toml (1897B)


      1 [package]
      2 name = "notedeck_columns"
      3 version = { workspace = true }
      4 authors = ["William Casarin <jb55@jb55.com>"]
      5 edition = "2021"
      6 #rust-version = "1.60"
      7 license = "GPLv3"
      8 description = "A tweetdeck-style notedeck app"
      9 
     10 [lib]
     11 crate-type = ["lib", "cdylib"]
     12 
     13 [dependencies]
     14 rmpv = { workspace = true }
     15 bech32 = { workspace = true }
     16 notedeck = { workspace = true }
     17 tokenator = { workspace = true }
     18 bitflags = { workspace = true }
     19 dirs = { workspace = true }
     20 eframe = { workspace = true }
     21 thiserror = { workspace = true }
     22 egui = { workspace = true }
     23 egui_extras = { workspace = true }
     24 egui_nav = { workspace = true }
     25 egui_tabs = { workspace = true }
     26 egui_virtual_list = { workspace = true }
     27 ehttp = { workspace = true }
     28 enostr = { workspace = true } 
     29 hex = { workspace = true }
     30 image = { workspace = true }
     31 indexmap = { workspace = true }
     32 nostrdb = { workspace = true }
     33 open = { workspace = true }
     34 poll-promise = { workspace = true }
     35 puffin = { workspace = true, optional = true }
     36 puffin_egui = { workspace = true, optional = true }
     37 serde = { workspace = true }
     38 serde_derive = { workspace = true }
     39 serde_json = { workspace = true }
     40 strum = { workspace = true }
     41 strum_macros = { workspace = true }
     42 tokio = { workspace = true, features = ["macros", "rt-multi-thread", "fs"] }
     43 tracing = { workspace = true }
     44 tracing-appender = { workspace = true }
     45 tracing-subscriber = { workspace = true }
     46 url = { workspace = true }
     47 urlencoding = { workspace = true }
     48 uuid = { workspace = true }
     49 sha2 = { workspace = true }
     50 base64 = { workspace = true }
     51 
     52 [target.'cfg(any(target_os = "windows", target_os = "macos", target_os = "linux"))'.dependencies]
     53 rfd = "0.15"
     54 
     55 [dev-dependencies]
     56 tempfile = { workspace = true }
     57 pretty_assertions = { workspace = true }
     58 
     59 [target.'cfg(target_os = "macos")'.dependencies]
     60 security-framework = "2.11.0"
     61 
     62 [features]
     63 default = []
     64 profiling = ["puffin", "puffin_egui", "eframe/puffin"]
     65