[package]
edition = "2024"
name = "pinch-points"
version = "0.1.0"
build = "build.rs"
exclude = [
"docs/",
".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast, kid-friendly crab-routing game: route streams of crabs into your sandcastle before the tide comes in"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/agourlay/pinch-points"
[lib]
name = "pinch_points"
path = "src/lib.rs"
[[bin]]
name = "pinch-points"
path = "src/main.rs"
[[example]]
name = "author"
path = "examples/author.rs"
[[example]]
name = "balance"
path = "examples/balance.rs"
[[example]]
name = "ladder"
path = "examples/ladder.rs"
[[example]]
name = "verify_levels"
path = "examples/verify_levels.rs"
[[test]]
name = "it"
path = "tests/it/main.rs"
[dependencies.bevy]
version = "0.19.1"
features = [
"wav",
"vorbis",
"system_clipboard",
]
[dependencies.icu_provider]
version = "2"
features = ["logging"]
[dependencies.include_dir]
version = "0.7.4"
[dependencies.parlance]
version = "0.1"
[dependencies.semver]
version = "1"
[dependencies.serde_json]
version = "1"
[dependencies.ureq]
version = "3"
[dev-dependencies.indicatif]
version = "0.17"
[lints.clippy]
cast_lossless = "warn"
doc_link_with_quotes = "warn"
enum_glob_use = "warn"
explicit_into_iter_loop = "warn"
filter_map_next = "warn"
flat_map_option = "warn"
from_iter_instead_of_collect = "warn"
implicit_clone = "warn"
inconsistent_struct_constructor = "warn"
inefficient_to_string = "warn"
manual_is_variant_and = "warn"
manual_let_else = "warn"
match_wildcard_for_single_variants = "warn"
needless_continue = "warn"
needless_pass_by_ref_mut = "warn"
needless_raw_string_hashes = "warn"
ptr_as_ptr = "warn"
ref_option_ref = "warn"
uninlined_format_args = "warn"
unnecessary_wraps = "warn"
unused_async = "warn"
unused_self = "warn"
used_underscore_binding = "warn"
wildcard_enum_match_arm = "warn"
[profile.profiling]
debug = 2
inherits = "release"
[profile.release]
lto = "fat"
codegen-units = 1