diff options
| author | mo8it <mo8it@proton.me> | 2024-04-23 19:18:25 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-04-23 19:18:25 +0200 |
| commit | 2dac8e509bed07c30a98983cfb6b80f73a1582e9 (patch) | |
| tree | 64db2dcbe08ed05d2befcdba91d851e97f18571e /Cargo.toml | |
| parent | e5a19a4c33e16e517e4d597acb721ed281c7bdae (diff) | |
Refactor embedded files to add 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] |
