-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
32 lines (29 loc) · 898 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
[package]
name = "dprint-plugin-exec"
version = "0.5.1"
authors = ["Alex Zherebtsov <[email protected]>", "David Sherret <[email protected]>"]
edition = "2021"
homepage = "https://github.com/dprint/dprint-plugin-exec"
keywords = ["formatting", "formatter", "exec"]
license = "MIT"
repository = "https://github.com/dprint/dprint-plugin-exec"
description = "Code formatter based on external tool execution."
[profile.release]
opt-level = 3
debug = false
lto = true
debug-assertions = false
overflow-checks = false
panic = "abort"
[dependencies]
anyhow = "1.0.86"
dprint-core = { version = "0.67.0", features = ["process"] }
globset = "0.4.14"
handlebars = "5.1.2"
serde = { version = "1.0.204", features = ["derive"] }
splitty = "1.0.1"
tokio = { version = "1.38.0", features = ["time"] }
[dev-dependencies]
dprint-development = "0.10.1"
pretty_assertions = "1.4.0"
serde_json = "1.0.120"