rustlings 6.4.0

Small exercises to get you used to reading and writing Rust code!
[[bin]]
name = "rustlings"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0.93"

[dependencies.clap]
features = ["derive"]
version = "4.5.20"

[dependencies.crossterm]
default-features = false
features = ["windows", "events"]
version = "0.28.1"

[dependencies.notify]
version = "7.0.0"

[dependencies.os_pipe]
version = "1.2.1"

[dependencies.rustlings-macros]
version = "=6.4.0"

[dependencies.serde]
features = ["derive"]
version = "1.0.214"

[dependencies.serde_json]
version = "1.0.132"

[dependencies.toml_edit]
default-features = false
features = ["parse", "serde"]
version = "0.22.22"

[dev-dependencies.tempfile]
version = "3.14.0"

[lints.clippy]
dbg_macro = "warn"
disallowed-methods = "deny"
disallowed-types = "deny"
empty_loop = "forbid"
infinite_loop = "deny"
mem_forget = "deny"
needless_option_as_deref = "allow"
todo = "warn"

[lints.rust]
unsafe_code = "forbid"
unstable_features = "forbid"

[package]
authors = ["Mo Bitar <mo8it@proton.me>", "Liv <mokou@fastmail.com>", "Carol (Nichols || Goulding) <carol.nichols@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = "Small exercises to get you used to reading and writing Rust code!"
edition = "2021"
include = ["/src/", "/exercises/", "/solutions/", "/dev-Cargo.toml", "/README.md", "/LICENSE"]
keywords = ["exercise", "learning"]
license = "MIT"
name = "rustlings"
readme = "README.md"
repository = "https://github.com/rust-lang/rustlings"
rust-version = "1.80"
version = "6.4.0"

[package.metadata.release]
pre-release-commit-message = "Release 🎉"
pre-release-hook = ["./release-hook.sh"]

[profile.dev]
panic = "abort"

[profile.release]
panic = "abort"

[target."cfg(not(windows))".dependencies.rustix]
default-features = false
features = ["std", "stdio", "termios"]
version = "0.38.38"