[package] name = "fpgcli" version = "0.0.1" edition = "2021" license = "GPL-3.0-only" homepage = "https://codeberg.org/tulpenkiste/flowerypassgen" repository = "https://codeberg.org/tulpenkiste/flowerypassgen" readme = "README.md" description = "CLI executable built on flowerypassgen." categories = ["command-line-utilities"] keywords = ["command-line-utility", "password-generator", "password"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] arboard = "3.2.1" flowerypassgen = { version = "0.0.1", path = "lib" } [target.'cfg(all(unix, not(any(target_os="macos", target_os="android", target_os="emscripten"))))'.dependencies] arboard = { version = "3.2.1", features = ["wayland-data-control", "wl-clipboard-rs"]} [[bin]] name = "fpgcli" path = "cli/main.rs"