[workspace] members = ["xtask"] [profile.release] strip = true [package] name = "pixfetch" version = "1.0.0" edition = "2021" authors = ["RubixDev"] description = "Another fetch program with pixelized images written in Rust" repository = "https://github.com/RubixDev/pixfetch" license = "GPL-2.0-only" keywords = ["ansi", "terminal", "pixel", "cli", "fetch"] categories = ["command-line-utilities"] exclude = ["screenshots"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] ansipix = "1.0.0" chrono = "0.4.19" clap = { version = "3.2.6", features = ["derive", "wrap_help"] } serde = { version = "1.0.137", features = ["derive"] } strum = { version = "0.24.1", features = ["derive"] } sysinfo = "0.24.5" systemstat = "0.1.11" toml = "0.5.9" [target.'cfg(not(target_os = "android"))'.dependencies] battery = "0.7.8" [target.'cfg(target_os = "android")'.dependencies] serde_json = "1.0.81" [build-dependencies] clap = { version = "3.2.6", features = ["derive"] } clap_complete = "3.2.2" clap_mangen = "0.1.9" serde = { version = "1.0.137", features = ["derive"] } strum = { version = "0.24.1", features = ["derive"] }