summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-04-17 15:55:50 +0200
committermo8it <mo8it@proton.me>2024-04-17 15:55:50 +0200
commit501b973c258a3c2e3a463d58c16402302184380f (patch)
treea03812f5d3f5a5ef9e171077fb6aa6571a3f31fb /Cargo.toml
parent30636e7cf345757f95235744ff81376ae81c9aa2 (diff)
Add "dev update"
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml14
1 files changed, 3 insertions, 11 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 06fbbf7..cde4182 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,9 +6,6 @@ exclude = [
"tests/fixture/success",
"dev",
]
-members = [
- "gen-dev-cargo-toml",
-]
[workspace.package]
version = "6.0.0-alpha.0"
@@ -20,11 +17,6 @@ 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!"
@@ -42,15 +34,15 @@ include = [
]
[dependencies]
-anyhow.workspace = true
+anyhow = "1.0.82"
clap = { version = "4.5.4", features = ["derive"] }
crossterm = "0.27.0"
hashbrown = "0.14.3"
notify-debouncer-mini = "0.4.1"
ratatui = "0.26.2"
rustlings-macros = { path = "rustlings-macros", version = "6.0.0-alpha.0" }
-serde.workspace = true
-toml_edit.workspace = true
+serde = { version = "1.0.197", features = ["derive"] }
+toml_edit = { version = "0.22.9", default-features = false, features = ["parse", "serde"] }
which = "6.0.1"
[dev-dependencies]