URI: 
       Cargo.toml - icy_draw - [fork] icy_draw is the successor to mystic draw.
  HTML git clone https://git.drkhsh.at/icy_draw.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
       Cargo.toml (933B)
       ---
            1 [package]
            2 name = "icy_engine"
            3 version = "0.4.0"
            4 authors.workspace = true
            5 edition.workspace = true
            6 
            7 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
            8 
            9 [features]
           10 default = ["clipboard", "minimal"]
           11 clipboard = ["arboard"]
           12 minimal = []
           13 
           14 [dependencies]
           15 lazy_static = { workspace = true }
           16 base64 = "0.22.0"
           17 log = { workspace = true }
           18 rfind_url = "0.4.4"
           19 chrono = { workspace = true }
           20 png = "0.17.10"
           21 regex = { workspace = true }
           22 thiserror = { workspace = true }
           23 anyhow = "1.0.80"
           24 serde = { workspace = true }
           25 byteorder = "1"
           26 bstr = { workspace = true }
           27 codepages = { workspace = true }
           28 
           29 i18n-embed = { workspace = true }
           30 i18n-embed-fl = { workspace = true }
           31 rust-embed = { workspace = true }
           32 once_cell = { workspace = true }
           33 arboard = { version = "3.2.1", optional = true }
           34 icy_sauce = { workspace = true }
           35 icy_sixel = { workspace = true }
           36 
           37 [dev-dependencies]
           38 walkdir = { workspace = true }