[package] name = "rpack_cli" authors = ["Piotr Siuszko "] license = "MIT" edition = "2021" [features] default = ["cli", "dds"] cli = ["dep:clap", "dep:glob"] basis = ["dep:basis-universal"] dds = ["dep:image_dds"] [dependencies] bevy_rpack = { default-features = false, path = "../bevy_rpack" } serde = { version = "1", features = ["derive"] } serde_json = "1" texture_packer = { version = "0.29", features = ["common"] } image = { version = "0.25", features = ["jpeg", "png"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] clap = { version = "4", features = ["derive"], optional = true } basis-universal = { version = "0.3.1", optional = true } image_dds = { version = "0.6.2", optional = true } glob = { version = "0.3", optional = true }