-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
48 lines (43 loc) · 1.98 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
45
46
47
48
[package]
name = "dprint-plugin-biome"
version = "0.7.1"
authors = ["David Sherret <[email protected]>"]
edition = "2021"
homepage = "https://github.com/dprint/dprint-plugin-biome"
keywords = ["formatting", "formatter", "biome"]
license = "MIT"
repository = "https://github.com/dprint/dprint-plugin-biome"
description = "JavaScript/TypeScript/JSON formatter for dprint via Biome."
[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"]
[dependencies]
anyhow = "1.0.51"
biome_css_formatter = { git = "https://github.com/biomejs/biome", tag = "cli/v1.9.4" }
biome_css_parser = { git = "https://github.com/biomejs/biome", tag = "cli/v1.9.4" }
biome_css_syntax = { git = "https://github.com/biomejs/biome", tag = "cli/v1.9.4" }
biome_diagnostics = { git = "https://github.com/biomejs/biome", tag = "cli/v1.9.4" }
biome_formatter = { git = "https://github.com/biomejs/biome", tag = "cli/v1.9.4" }
biome_graphql_formatter = { git = "https://github.com/biomejs/biome", tag = "cli/v1.9.4" }
biome_graphql_parser = { git = "https://github.com/biomejs/biome", tag = "cli/v1.9.4" }
biome_graphql_syntax = { git = "https://github.com/biomejs/biome", tag = "cli/v1.9.4" }
biome_js_formatter = { git = "https://github.com/biomejs/biome", tag = "cli/v1.9.4" }
biome_js_parser = { git = "https://github.com/biomejs/biome", tag = "cli/v1.9.4" }
biome_js_syntax = { git = "https://github.com/biomejs/biome", tag = "cli/v1.9.4" }
biome_json_formatter = { git = "https://github.com/biomejs/biome", tag = "cli/v1.9.4" }
biome_json_parser = { git = "https://github.com/biomejs/biome", tag = "cli/v1.9.4" }
dprint-core = { version = "0.67.2", default-features = false }
serde = { version = "1.0.210", features = ["derive"] }
serde_json = { version = "1.0", optional = true }
[dev-dependencies]
dprint-development = "0.9.5"
pretty_assertions = "1.4.0"
serde_json = { version = "1.0" }