2024-03-28 16:34:48 +00:00
|
|
|
[workspace]
|
|
|
|
resolver = "2"
|
2024-03-31 16:59:01 +00:00
|
|
|
exclude = [
|
|
|
|
"tests/fixture/failure",
|
|
|
|
"tests/fixture/state",
|
|
|
|
"tests/fixture/success",
|
2024-04-01 00:11:52 +00:00
|
|
|
"dev",
|
2024-03-31 16:59:01 +00:00
|
|
|
]
|
2024-03-28 16:34:48 +00:00
|
|
|
|
|
|
|
[workspace.package]
|
2024-04-25 17:54:59 +00:00
|
|
|
version = "6.0.0-beta.2"
|
2022-11-11 15:12:09 +00:00
|
|
|
authors = [
|
|
|
|
"Liv <mokou@fastmail.com>",
|
2024-04-24 14:15:14 +00:00
|
|
|
"Mo Bitar <mo8it@proton.me>",
|
|
|
|
# Alumni
|
2022-11-11 15:12:09 +00:00
|
|
|
"Carol (Nichols || Goulding) <carol.nichols@gmail.com>",
|
|
|
|
]
|
2024-04-24 14:15:14 +00:00
|
|
|
repository = "https://github.com/rust-lang/rustlings"
|
2024-03-28 16:34:48 +00:00
|
|
|
license = "MIT"
|
2021-10-29 12:27:36 +00:00
|
|
|
edition = "2021"
|
2018-04-26 19:41:19 +00:00
|
|
|
|
2024-04-23 17:18:25 +00:00
|
|
|
[workspace.dependencies]
|
|
|
|
serde = { version = "1.0.198", features = ["derive"] }
|
|
|
|
toml_edit = { version = "0.22.12", default-features = false, features = ["parse", "serde"] }
|
|
|
|
|
2024-03-28 16:34:48 +00:00
|
|
|
[package]
|
|
|
|
name = "rustlings"
|
|
|
|
description = "Small exercises to get you used to reading and writing Rust code!"
|
2024-04-01 00:11:52 +00:00
|
|
|
default-run = "rustlings"
|
2024-03-28 16:34:48 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
2024-04-24 14:15:14 +00:00
|
|
|
repository.workspace = true
|
2024-03-28 16:34:48 +00:00
|
|
|
license.workspace = true
|
|
|
|
edition.workspace = true
|
2024-04-24 14:15:14 +00:00
|
|
|
keywords = [
|
|
|
|
"exercise",
|
|
|
|
"learning",
|
|
|
|
]
|
2024-04-16 01:56:08 +00:00
|
|
|
include = [
|
|
|
|
"/exercises/",
|
|
|
|
"/info.toml",
|
|
|
|
"/LICENSE",
|
|
|
|
"/README.md",
|
2024-04-25 17:02:07 +00:00
|
|
|
"/solutions/",
|
2024-04-16 01:56:08 +00:00
|
|
|
"/src/",
|
|
|
|
]
|
2024-03-28 16:34:48 +00:00
|
|
|
|
2018-04-26 19:41:19 +00:00
|
|
|
[dependencies]
|
2024-04-17 13:55:50 +00:00
|
|
|
anyhow = "1.0.82"
|
2024-03-27 14:16:42 +00:00
|
|
|
clap = { version = "4.5.4", features = ["derive"] }
|
2024-04-04 18:21:55 +00:00
|
|
|
crossterm = "0.27.0"
|
2024-04-13 23:15:43 +00:00
|
|
|
hashbrown = "0.14.3"
|
2024-03-10 22:57:35 +00:00
|
|
|
notify-debouncer-mini = "0.4.1"
|
2024-04-24 23:56:01 +00:00
|
|
|
os_pipe = "1.1.5"
|
2024-04-15 21:35:30 +00:00
|
|
|
ratatui = "0.26.2"
|
2024-04-25 17:54:59 +00:00
|
|
|
rustlings-macros = { path = "rustlings-macros", version = "=6.0.0-beta.2" }
|
2024-04-23 17:18:25 +00:00
|
|
|
serde.workspace = true
|
|
|
|
toml_edit.workspace = true
|
2024-03-24 23:30:01 +00:00
|
|
|
which = "6.0.1"
|
2019-03-20 20:05:45 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-03-10 22:57:35 +00:00
|
|
|
assert_cmd = "2.0.14"
|
|
|
|
predicates = "3.1.0"
|
2024-03-29 00:25:32 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
panic = "abort"
|
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
panic = "abort"
|
2024-04-25 17:02:07 +00:00
|
|
|
|
|
|
|
[package.metadata.release]
|
|
|
|
pre-release-hook = ["./release-hook.sh"]
|