2024-03-28 16:34:48 +00:00
|
|
|
[workspace]
|
|
|
|
resolver = "2"
|
|
|
|
|
|
|
|
[workspace.package]
|
2024-03-29 00:25:21 +00:00
|
|
|
version = "6.0.0"
|
2022-11-11 15:12:09 +00:00
|
|
|
authors = [
|
|
|
|
"Liv <mokou@fastmail.com>",
|
|
|
|
"Carol (Nichols || Goulding) <carol.nichols@gmail.com>",
|
|
|
|
]
|
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-03-28 16:34:48 +00:00
|
|
|
[package]
|
|
|
|
name = "rustlings"
|
|
|
|
description = "Small exercises to get you used to reading and writing Rust code!"
|
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
|
2018-04-26 19:41:19 +00:00
|
|
|
[dependencies]
|
2024-03-25 02:46:56 +00:00
|
|
|
anyhow = "1.0.81"
|
2024-03-27 14:16:42 +00:00
|
|
|
clap = { version = "4.5.4", features = ["derive"] }
|
2024-03-10 22:57:35 +00:00
|
|
|
console = "0.15.8"
|
|
|
|
indicatif = "0.17.8"
|
|
|
|
notify-debouncer-mini = "0.4.1"
|
2024-03-28 16:34:48 +00:00
|
|
|
rustlings-macros = { path = "rustlings-macros" }
|
2024-03-27 14:16:42 +00:00
|
|
|
serde_json = "1.0.115"
|
2024-03-10 22:57:35 +00:00
|
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
2024-03-23 17:51:25 +00:00
|
|
|
shlex = "1.3.0"
|
2024-03-25 01:35:51 +00:00
|
|
|
toml_edit = { version = "0.22.9", default-features = false, features = ["parse", "serde"] }
|
2024-03-24 23:30:01 +00:00
|
|
|
which = "6.0.1"
|
2024-03-24 18:18:19 +00:00
|
|
|
winnow = "0.6.5"
|
2019-03-20 20:05:45 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-03-10 22:57:35 +00:00
|
|
|
assert_cmd = "2.0.14"
|
2023-08-25 21:18:01 +00:00
|
|
|
glob = "0.3.0"
|
2024-03-10 22:57:35 +00:00
|
|
|
predicates = "3.1.0"
|
2024-03-29 00:25:32 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
panic = "abort"
|
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
panic = "abort"
|