diff options
| author | Mo <76752051+mo8it@users.noreply.github.com> | 2024-04-24 02:56:20 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-24 02:56:20 +0200 |
| commit | 53fdb9044d54dbdf5f0aa6c309cd285829a04b3a (patch) | |
| tree | b45b6f11597130690232b2eaa9621f25ecf98200 /Cargo.toml | |
| parent | 86684b7fc9dd5e8bedad6056565645d1d980925c (diff) | |
| parent | 8a085a0a85c759029cd57c28364867bde817e738 (diff) | |
Merge pull request #1955 from rust-lang/solutions
Solutions
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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] |
