diff options
| author | scarf <greenscarf005@gmail.com> | 2023-11-28 00:32:12 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-27 10:32:12 -0500 |
| commit | 2b7e145e56c7f1fbb4498d4ec6c6f9d237405db7 (patch) | |
| tree | 24ef9ad68cd9b786aeb12ae79d40d06c3cc92869 /Cargo.lock | |
| parent | 3d47c7eb1ffc1da810d8d9dd8c0304cb26616d3e (diff) | |
feat(fmt): support formatting code blocks in Jupyter notebooks (#21310)
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index c7f15fd93..1a9f18971 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -884,6 +884,7 @@ dependencies = [ "dissimilar", "dotenvy", "dprint-plugin-json", + "dprint-plugin-jupyter", "dprint-plugin-markdown", "dprint-plugin-typescript", "encoding_rs", @@ -1941,6 +1942,19 @@ dependencies = [ ] [[package]] +name = "dprint-plugin-jupyter" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b65cf5dd43b15bf9dbb69a2d0e331106d6e3d33d8678d32385245993e8855c02" +dependencies = [ + "anyhow", + "dprint-core", + "jsonc-parser", + "serde", + "serde_json", +] + +[[package]] name = "dprint-plugin-markdown" version = "0.16.3" source = "registry+https://github.com/rust-lang/crates.io-index" |
