-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
36 lines (31 loc) · 880 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "dprint-plugin-jupyter"
version = "0.1.5"
authors = ["David Sherret <[email protected]>"]
edition = "2021"
homepage = "https://github.com/dprint/dprint-plugin-jupyter"
keywords = ["formatting", "formatter", "jupyter"]
license = "MIT"
repository = "https://github.com/dprint/dprint-plugin-jupyter"
description = "Formats code blocks in Jupyter notebooks."
[lib]
crate-type = ["lib", "cdylib"]
[profile.release]
opt-level = 3
debug = false
lto = true
debug-assertions = false
overflow-checks = false
panic = "abort"
[features]
wasm = ["dprint-core/wasm"]
[dependencies]
anyhow = "1.0.51"
dprint-core = { version = "0.66.1", features = ["formatting"] }
jsonc-parser = "0.26.0"
serde = { version = "1.0.108", features = ["derive"] }
serde_json = "1.0"
[dev-dependencies]
dprint-development = "0.9.5"
pretty_assertions = "1.4.0"
serde_json = { version = "1.0" }