2024-03-28 19:34:48 +03:00
|
|
|
[workspace]
|
|
|
|
resolver = "2"
|
2024-03-31 19:59:01 +03:00
|
|
|
exclude = [
|
2024-07-25 16:12:14 +03:00
|
|
|
"tests/test_exercises",
|
2024-04-01 03:11:52 +03:00
|
|
|
"dev",
|
2024-03-31 19:59:01 +03:00
|
|
|
]
|
2024-03-28 19:34:48 +03:00
|
|
|
|
|
|
|
[workspace.package]
|
2024-08-09 12:52:31 +03:00
|
|
|
version = "6.2.0"
|
2022-11-11 18:12:09 +03:00
|
|
|
authors = [
|
2024-07-31 19:53:25 +03:00
|
|
|
"Mo Bitar <mo8it@proton.me>", # https://github.com/mo8it
|
|
|
|
"Liv <mokou@fastmail.com>", # https://github.com/shadows-withal
|
2024-04-24 17:15:14 +03:00
|
|
|
# Alumni
|
2024-07-31 19:53:25 +03:00
|
|
|
"Carol (Nichols || Goulding) <carol.nichols@gmail.com>", # https://github.com/carols10cents
|
2022-11-11 18:12:09 +03:00
|
|
|
]
|
2024-04-24 17:15:14 +03:00
|
|
|
repository = "https://github.com/rust-lang/rustlings"
|
2024-03-28 19:34:48 +03:00
|
|
|
license = "MIT"
|
2024-08-01 20:14:09 +03:00
|
|
|
edition = "2021" # On Update: Update the edition of the `rustfmt` command that checks the solutions.
|
2024-08-02 17:40:06 +03:00
|
|
|
rust-version = "1.80"
|
2018-04-26 22:41:19 +03:00
|
|
|
|
2024-04-23 20:18:25 +03:00
|
|
|
[workspace.dependencies]
|
2024-08-09 02:06:27 +03:00
|
|
|
serde = { version = "1.0.205", features = ["derive"] }
|
2024-08-05 04:15:43 +03:00
|
|
|
toml_edit = { version = "0.22.20", default-features = false, features = ["parse", "serde"] }
|
2024-04-23 20:18:25 +03:00
|
|
|
|
2024-03-28 19:34:48 +03:00
|
|
|
[package]
|
|
|
|
name = "rustlings"
|
|
|
|
description = "Small exercises to get you used to reading and writing Rust code!"
|
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
2024-04-24 17:15:14 +03:00
|
|
|
repository.workspace = true
|
2024-03-28 19:34:48 +03:00
|
|
|
license.workspace = true
|
|
|
|
edition.workspace = true
|
2024-08-02 17:40:06 +03:00
|
|
|
rust-version.workspace = true
|
2024-04-24 17:15:14 +03:00
|
|
|
keywords = [
|
|
|
|
"exercise",
|
|
|
|
"learning",
|
|
|
|
]
|
2024-04-16 04:56:08 +03:00
|
|
|
include = [
|
2024-04-25 20:58:55 +03:00
|
|
|
"/src/",
|
2024-04-16 04:56:08 +03:00
|
|
|
"/exercises/",
|
2024-04-25 20:58:55 +03:00
|
|
|
"/solutions/",
|
|
|
|
# A symlink to be able to include `dev/Cargo.toml` although `dev` is excluded.
|
|
|
|
"/dev-Cargo.toml",
|
2024-04-16 04:56:08 +03:00
|
|
|
"/README.md",
|
2024-04-25 20:58:55 +03:00
|
|
|
"/LICENSE",
|
2024-04-16 04:56:08 +03:00
|
|
|
]
|
2024-03-28 19:34:48 +03:00
|
|
|
|
2018-04-26 22:41:19 +03:00
|
|
|
[dependencies]
|
2024-08-09 00:46:21 +03:00
|
|
|
ahash = { version = "0.8.11", default-features = false }
|
2024-05-20 19:11:19 +03:00
|
|
|
anyhow = "1.0.86"
|
2024-08-09 02:06:27 +03:00
|
|
|
clap = { version = "4.5.14", features = ["derive"] }
|
2024-04-27 05:32:06 +03:00
|
|
|
notify-debouncer-mini = { version = "0.4.1", default-features = false }
|
2024-08-05 04:15:43 +03:00
|
|
|
os_pipe = "1.2.1"
|
2024-08-09 03:17:01 +03:00
|
|
|
ratatui = { version = "0.28.0", default-features = false, features = ["crossterm"] }
|
2024-08-09 12:52:31 +03:00
|
|
|
rustlings-macros = { path = "rustlings-macros", version = "=6.2.0" }
|
2024-08-05 04:15:43 +03:00
|
|
|
serde_json = "1.0.122"
|
2024-04-23 20:18:25 +03:00
|
|
|
serde.workspace = true
|
|
|
|
toml_edit.workspace = true
|
2019-03-20 23:05:45 +03:00
|
|
|
|
2024-08-08 15:04:43 +03:00
|
|
|
[dev-dependencies]
|
|
|
|
tempfile = "3.12.0"
|
|
|
|
|
2024-03-29 03:25:32 +03:00
|
|
|
[profile.release]
|
|
|
|
panic = "abort"
|
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
panic = "abort"
|
2024-04-25 20:02:07 +03:00
|
|
|
|
|
|
|
[package.metadata.release]
|
|
|
|
pre-release-hook = ["./release-hook.sh"]
|
2024-07-28 21:30:23 +03:00
|
|
|
|
|
|
|
# TODO: Remove after the following fix is released: https://github.com/rust-lang/rust-clippy/pull/13102
|
|
|
|
[lints.clippy]
|
|
|
|
needless_option_as_deref = "allow"
|