cargo-features = ["strip"]
[package]
name = "dirs-cli"
version = "0.0.2"
authors = ["Simon Ochsenreither <simon@ochsenreither.de>"]
description = "A tiny low-level command line application that provides platform-specific standard locations of directories for config, cache and other data on Linux, Windows, macOS and Redox by leveraging the mechanisms defined by the XDG base/user directory specifications on Linux, the Known Folder API on Windows, and the Standard Directory guidelines on macOS."
readme = "README.md"
license = "MPL-2.0"
repository = "https://github.com/soc/dirs-cli-rs"
maintenance = { status = "actively-developed" }
keywords = ["xdg", "basedir", "app_dirs", "path", "folder"]
[dependencies]
dirs = "4.0.0"
[target.'cfg(windows)'.dependencies]
win32console = "0.1.5"
[profile.dev]
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true