[package] name = "NumGuessRust" version = "0.1.17" edition = "2021" authors = ["gandli "] description = "This is a simple number guessing game program where players have to guess a random number between 1 and 100." homepage = "https://chenxuexin.com/" readme = "README.md" license = "MIT OR Apache-2.0" repository = "https://github.com/gandli/num_guess_rust" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] rand = "0.9.0-alpha.0" # The profile that 'cargo dist' will build with [profile.dist] inherits = "release" lto = "thin" # Config for 'cargo dist' [workspace.metadata.dist] # The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax) cargo-dist-version = "0.11.1" # The installers to generate for each app installers = ["shell", "powershell", "npm", "homebrew", "msi"] # Target platforms to build apps for (Rust target-triple syntax) targets = [ "aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc", ] # CI backends to support ci = ["github"] # Publish jobs to run in CI pr-run-mode = "upload" # A GitHub repo to push Homebrew formulas to tap = "gandli/num_guess_rust" # The archive format to use for windows builds (defaults .zip) windows-archive = ".tar.gz" # The archive format to use for non-windows builds (defaults .tar.xz) unix-archive = ".tar.gz" # Publish jobs to run in CI publish-jobs = ["homebrew"] [package.metadata.docs.rs] homepage = "https://github.com/gandli/num_guess_rust" repository = "https://github.com/gandli/num_guess_rust" [package.metadata.'cargo-script'] install = "cargo install NumGuessRust" example = "NumGuessRust" [package.metadata.wix] upgrade-guid = "3FEA7E4B-528E-4761-B2DB-0AAEBD2BD52B" path-guid = "EC7523C9-9A3B-4165-AED6-F8A426E42D1C" license = false eula = false