[package] name = "pixcil" version = "0.7.0" edition = "2021" authors = ["Takeru Ohta "] license = "MIT OR Apache-2.0" description = "Pixel art editor" homepage = "https://github.com/sile/pixcil" repository = "https://github.com/sile/pixcil" readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] crate-type = ["lib", "cdylib"] [features] default = ["wasm", "auto-scaling"] wasm = ["pagurus/wasm"] auto-scaling = [] [dependencies] byteorder = "1.4.3" libflate = "2.0.0" log = "0.4.17" orfail = "1.1.0" pagurus = { version = "0.7", features = ["image", "random", "serde", "fixed_window"] } png = "0.17" serde = { version = "1", features = ["derive"] } serde_json = "1"