-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (34 loc) · 1.09 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
[package]
name = "djangofmt"
version = "0.1.0"
authors = ["Thibaut Decombe <[email protected]>"]
edition = "2021"
exclude = ["/tests"]
license = "MIT"
publish = true
repository = "https://github.com/UnknownPlatypus/djangofmt"
rust-version = "1.83"
description = "A fast, HTML aware, Django template formatter, written in Rust."
[dependencies]
dprint_plugin_markup = { git = "https://github.com/UnknownPlatypus/markup_fmt", rev = "v0.19.1.0", package = "dprint_plugin_markup" }
malva = { version = "0.11.1", features = ["config_serde"] }
markup_fmt = { git = "https://github.com/UnknownPlatypus/markup_fmt", rev = "v0.19.1.0", package = "markup_fmt" }
anyhow = "1.0.96"
clap = { version = "4.5.31", features = ["derive", "wrap_help"] }
clap_complete_command = "0.6.1"
rayon = "1.10.0"
serde_json = "1.0"
# Logging
colored = "3.0.0"
tracing = "0.1"
tracing-subscriber = "0.3"
tracing-tree = "0.4.0"
[dev-dependencies]
insta-cmd = "0.6.0"
[profile.release]
# See python/benchmark_cargo_profiles.py
lto = "thin"
strip = true
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"