-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 888 Bytes
/
Copy pathCargo.toml
File metadata and controls
25 lines (23 loc) · 888 Bytes
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
[package]
name = "dsfmt"
version = "0.5.0"
edition = "2024"
description = "Datastar attribute formatter — reflows data-* attributes and template expressions"
[dependencies]
tree-sitter = "0.26"
tree-sitter-html = "0.23"
tree-sitter-typescript = "0.23"
thiserror = "2"
clap = { version = "4", features = ["derive"] }
ignore = "0.4"
tree-sitter-datastar = { git = "https://github.com/hyperpuncher/tree-sitter-datastar", version = "0.1.0" }
oxc_formatter = { git = "https://github.com/oxc-project/oxc.git", version = "0.57.0" }
oxc_allocator = { git = "https://github.com/oxc-project/oxc.git", version = "0.138.0" }
oxc_span = { git = "https://github.com/oxc-project/oxc.git", version = "0.138.0" }
oxc_formatter_core = { git = "https://github.com/oxc-project/oxc.git", version = "0.57.0" }
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
strip = "symbols"
panic = "abort"