-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
44 lines (38 loc) · 1.05 KB
/
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
37
38
39
40
41
42
43
44
[package]
name = "dprint-plugin-toml"
version = "0.6.4"
authors = ["David Sherret <[email protected]>"]
edition = "2021"
homepage = "https://github.com/dprint/dprint-plugin-toml"
keywords = ["formatting", "formatter", "toml"]
license = "MIT"
repository = "https://github.com/dprint/dprint-plugin-toml"
description = "TOML formatter for dprint."
[lib]
crate-type = ["lib", "cdylib"]
[profile.release]
opt-level = 3
debug = false
lto = true
debug-assertions = false
overflow-checks = false
panic = "abort"
[features]
wasm = ["serde_json", "dprint-core/wasm"]
tracing = ["dprint-core/tracing"]
[[test]]
name = "specs"
path = "tests/spec_test.rs"
harness = false
[dependencies]
anyhow = "1.0.65"
dprint-core = { version = "0.66.2", features = ["formatting"] }
dprint-core-macros = "0.1.0"
itertools = "0.10"
serde = { version = "1.0.145", features = ["derive"] }
serde_json = { version = "1.0", optional = true }
taplo = { version = "0.12.1", default-features = false }
[dev-dependencies]
debug-here = "0.2"
dprint-development = "0.10.1"
serde_json = { version = "1.0" }