summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorMo <76752051+mo8it@users.noreply.github.com>2024-04-24 02:56:20 +0200
committerGitHub <noreply@github.com>2024-04-24 02:56:20 +0200
commit53fdb9044d54dbdf5f0aa6c309cd285829a04b3a (patch)
treeb45b6f11597130690232b2eaa9621f25ecf98200 /Cargo.toml
parent86684b7fc9dd5e8bedad6056565645d1d980925c (diff)
parent8a085a0a85c759029cd57c28364867bde817e738 (diff)
Merge pull request #1955 from rust-lang/solutions
Solutions
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml8
1 files changed, 6 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 6181b1e..1e6a24c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -17,6 +17,10 @@ authors = [
license = "MIT"
edition = "2021"
+[workspace.dependencies]
+serde = { version = "1.0.198", features = ["derive"] }
+toml_edit = { version = "0.22.12", default-features = false, features = ["parse", "serde"] }
+
[package]
name = "rustlings"
description = "Small exercises to get you used to reading and writing Rust code!"
@@ -41,8 +45,8 @@ 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 = { version = "1.0.198", features = ["derive"] }
-toml_edit = { version = "0.22.12", default-features = false, features = ["parse", "serde"] }
+serde.workspace = true
+toml_edit.workspace = true
which = "6.0.1"
[dev-dependencies]