[package]
name = "NumGuessRust"
version = "0.1.16"
edition = "2021"
authors = ["gandli <gandli@qq.com>"]
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"
[dependencies]
rand = "0.9.0-alpha.0"
[profile.dist]
inherits = "release"
lto = "thin"
[workspace.metadata.dist]
cargo-dist-version = "0.11.1"
installers = []
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
]
ci = ["github"]
pr-run-mode = "upload"
[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"