icns-rs

Easily create .icns files (Mac Icons) with this Rust library or the included CLI app.
Log | Files | Refs | LICENSE

Cargo.toml (343B)


      1 [package]
      2 name = "icns"
      3 version = "0.1.1"
      4 authors = ["Jack Mordaunt <jackmordaunt@gmail.com>"]
      5 edition = "2018"
      6 
      7 [lib]
      8 name = "icns"
      9 path = "src/lib.rs"
     10 
     11 [[bin]]
     12 name = "icnsify"
     13 path = "src/main.rs"
     14 
     15 [dependencies]
     16 image = "0.23.3"
     17 byteorder = "1.3.4"
     18 rayon = "1.3.0"
     19 clap = "2.33.0"
     20 
     21 [dev-dependencies]
     22 clap = "2.33.0"
     23 num-complex = "0.2.4"