[package] name = "mini-calc" version = "3.2.0" license = "GPL-3.0-or-later" description = "A fully-featured minimalistic configurable rust calculator" homepage = "https://calc.nwa2coco.fr" repository = "https://github.com/coco33920/calc" readme = "README.md" edition = "2021" exclude = [ "docs/*", "manual/*", "manual.pdf" ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] ansi_term = "0.12.1" linefeed = "0.6" confy = "0.5.1" gnuplot = "0.0.39" serde = { version = "1.0.192", features = ["derive"] } atty = "0.2" [package.metadata.deb] name = "mini-calc" maintainer = "Charlotte Thomas" copyright = "GPLv3" license-file = "LICENSE" [package.metadata.generate-rpm] name = "mini-calc" version = "3.1.0" license = "GPLv3" assets = [{source="target/release/mini-calc", dest="/usr/bin/mini-calc", mode = "755"}] # Config for 'cargo dist' [workspace.metadata.dist] # The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax) cargo-dist-version = "0.4.3" # CI backends to support ci = ["github"] # The installers to generate for each app installers = ["shell"] # Target platforms to build apps for (Rust target-triple syntax) targets = ["x86_64-unknown-linux-gnu", "aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-pc-windows-msvc"] # Publish jobs to run in CI pr-run-mode = "plan" # The profile that 'cargo dist' will build with [profile.dist] inherits = "release" lto = "thin"