summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml23
1 files changed, 14 insertions, 9 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 86187b4..07865ab 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,6 +6,9 @@ exclude = [
"tests/fixture/success",
"dev",
]
+members = [
+ "gen-dev-cargo-toml",
+]
[workspace.package]
version = "6.0.0"
@@ -16,6 +19,11 @@ authors = [
license = "MIT"
edition = "2021"
+[workspace.dependencies]
+anyhow = "1.0.82"
+serde = { version = "1.0.197", features = ["derive"] }
+toml_edit = { version = "0.22.9", default-features = false, features = ["parse", "serde"] }
+
[package]
name = "rustlings"
description = "Small exercises to get you used to reading and writing Rust code!"
@@ -26,22 +34,19 @@ license.workspace = true
edition.workspace = true
[dependencies]
-anyhow = "1.0.81"
+anyhow.workspace = true
clap = { version = "4.5.4", features = ["derive"] }
-console = "0.15.8"
-indicatif = "0.17.8"
+crossterm = "0.27.0"
+hashbrown = "0.14.3"
notify-debouncer-mini = "0.4.1"
+ratatui = "0.26.1"
rustlings-macros = { path = "rustlings-macros" }
-serde_json = "1.0.115"
-serde = { version = "1.0.197", features = ["derive"] }
-shlex = "1.3.0"
-toml_edit = { version = "0.22.9", default-features = false, features = ["parse", "serde"] }
+serde.workspace = true
+toml_edit.workspace = true
which = "6.0.1"
-winnow = "0.6.5"
[dev-dependencies]
assert_cmd = "2.0.14"
-glob = "0.3.0"
predicates = "3.1.0"
[profile.release]