notedeck

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

Cargo.toml (1752B)


      1 [package]
      2 name = "notedeck_columns"
      3 version = "0.2.0"
      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 notedeck = { workspace = true }
     15 bitflags = { workspace = true }
     16 dirs = { workspace = true }
     17 eframe = { workspace = true }
     18 thiserror = { workspace = true }
     19 egui = { workspace = true }
     20 egui_extras = { workspace = true }
     21 egui_nav = { workspace = true }
     22 egui_tabs = { workspace = true }
     23 egui_virtual_list = { workspace = true }
     24 ehttp = { workspace = true }
     25 enostr = { workspace = true } 
     26 hex = { workspace = true }
     27 image = { workspace = true }
     28 indexmap = { workspace = true }
     29 nostrdb = { workspace = true }
     30 open = { workspace = true }
     31 poll-promise = { workspace = true }
     32 puffin = { workspace = true, optional = true }
     33 puffin_egui = { workspace = true, optional = true }
     34 serde = { workspace = true }
     35 serde_derive = { workspace = true }
     36 serde_json = { workspace = true }
     37 strum = { workspace = true }
     38 strum_macros = { workspace = true }
     39 tokio = { workspace = true, features = ["macros", "rt-multi-thread", "fs"] }
     40 tracing = { workspace = true }
     41 tracing-appender = { workspace = true }
     42 tracing-subscriber = { workspace = true }
     43 url = { workspace = true }
     44 urlencoding = { workspace = true }
     45 uuid = { workspace = true }
     46 sha2 = { workspace = true }
     47 base64 = { workspace = true }
     48 
     49 [target.'cfg(any(target_os = "windows", target_os = "macos", target_os = "linux"))'.dependencies]
     50 rfd = "0.15"
     51 
     52 [dev-dependencies]
     53 tempfile = { workspace = true }
     54 
     55 [target.'cfg(target_os = "macos")'.dependencies]
     56 security-framework = "2.11.0"
     57 
     58 [features]
     59 default = []
     60 profiling = ["puffin", "puffin_egui", "eframe/puffin"]
     61