2024-03-28 19:34:48 +03:00
|
|
|
[workspace]
|
|
|
|
resolver = "2"
|
2024-03-31 19:59:01 +03:00
|
|
|
exclude = [
|
|
|
|
"tests/fixture/failure",
|
|
|
|
"tests/fixture/state",
|
|
|
|
"tests/fixture/success",
|
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-04-16 04:46:04 +03:00
|
|
|
version = "6.0.0-alpha.0"
|
2022-11-11 18:12:09 +03:00
|
|
|
authors = [
|
|
|
|
"Liv <mokou@fastmail.com>",
|
|
|
|
"Carol (Nichols || Goulding) <carol.nichols@gmail.com>",
|
2024-04-16 04:47:09 +03:00
|
|
|
"Mo <mo8it@proton.me>",
|
2022-11-11 18:12:09 +03:00
|
|
|
]
|
2024-03-28 19:34:48 +03:00
|
|
|
license = "MIT"
|
2021-10-29 15:27:36 +03:00
|
|
|
edition = "2021"
|
2018-04-26 22:41:19 +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!"
|
2024-04-01 03:11:52 +03:00
|
|
|
default-run = "rustlings"
|
2024-03-28 19:34:48 +03:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
edition.workspace = true
|
2024-04-16 04:56:08 +03:00
|
|
|
include = [
|
|
|
|
"/exercises/",
|
|
|
|
"/info.toml",
|
|
|
|
"/LICENSE",
|
|
|
|
"/README.md",
|
|
|
|
"/src/",
|
|
|
|
]
|
2024-03-28 19:34:48 +03:00
|
|
|
|
2018-04-26 22:41:19 +03:00
|
|
|
[dependencies]
|
2024-04-17 16:55:50 +03:00
|
|
|
anyhow = "1.0.82"
|
2024-03-27 17:16:42 +03:00
|
|
|
clap = { version = "4.5.4", features = ["derive"] }
|
2024-04-04 21:21:55 +03:00
|
|
|
crossterm = "0.27.0"
|
2024-04-14 02:15:43 +03:00
|
|
|
hashbrown = "0.14.3"
|
2024-03-11 01:57:35 +03:00
|
|
|
notify-debouncer-mini = "0.4.1"
|
2024-04-16 00:35:30 +03:00
|
|
|
ratatui = "0.26.2"
|
2024-04-16 04:56:08 +03:00
|
|
|
rustlings-macros = { path = "rustlings-macros", version = "6.0.0-alpha.0" }
|
2024-04-17 16:56:24 +03:00
|
|
|
serde = { version = "1.0.198", features = ["derive"] }
|
2024-04-17 16:55:50 +03:00
|
|
|
toml_edit = { version = "0.22.9", default-features = false, features = ["parse", "serde"] }
|
2024-03-25 02:30:01 +03:00
|
|
|
which = "6.0.1"
|
2019-03-20 23:05:45 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-03-11 01:57:35 +03:00
|
|
|
assert_cmd = "2.0.14"
|
|
|
|
predicates = "3.1.0"
|
2024-03-29 03:25:32 +03:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
panic = "abort"
|
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
panic = "abort"
|