-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
87 lines (74 loc) · 2.62 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
authors = ["Keith Cirkel <[email protected]>"]
description = "Refreshing CSS!"
edition = "2021"
homepage = "https://github.com/keithamus/hdx"
keywords = ["CSS", "parser"]
license = "MIT"
repository = "https://github.com/keithamus/hdx"
[workspace.dependencies]
hdx = { version = "0.0.1", path = "crates/hdx" }
hdx_atom = { version = "0.0.0", path = "crates/hdx_atom" }
hdx_derive = { version = "0.0.0", path = "crates/hdx_derive" }
hdx_proc_macro = { version = "0.0.0", path = "crates/hdx_proc_macro" }
hdx_parser = { version = "0.0.1", path = "crates/hdx_parser" }
hdx_lexer = { version = "0.0.1", path = "crates/hdx_lexer" }
hdx_syntax = { version = "0.0.0", path = "crates/hdx_syntax" }
hdx_ast = { version = "0.0.0", path = "crates/hdx_ast" }
hdx_writer = { version = "0.0.0", path = "crates/hdx_writer" }
hdx_transform = { version = "0.0.0", path = "crates/hdx_transform" }
bumpalo = { version = "3.16.0" }
clap = { version = "4.5.20" }
closestmatch = { version = "0.1.2" }
miette = { version = "7.2.0", default-features = false }
thiserror = { version = "2.0.0" }
serde = { version = "1.0.213" }
serde_json = { version = "1.0.132" }
syn = { version = "2.0.87" }
quote = { version = "1.0.37" }
proc-macro2 = { version = "1.0.89" }
bitmask-enum = { version = "2.2.5" }
smallvec = { version = "1.13.2" }
itertools = { version = "0.13.0" }
glob = { version = "0.3.1" }
pico-args = { version = "0.5.0" }
project-root = { version = "0.2.2" }
similar = { version = "2.6.0" }
criterion = { version = "0.5.1" }
pprof = { version = "0.13.0" }
flate2 = { version = "1.0.34" }
insta = { version = "1.41.1" }
console = { version = "0.15.8" }
prettyplease = { version = "0.2.25" }
string_cache = { version = "0.8.7" }
string_cache_codegen = { version = "0.5.2" }
grep-regex = { version = "0.1.13" }
grep-matcher = { version = "0.1.7" }
grep-searcher = { version = "0.1.14" }
wasm-bindgen = { version = "0.2.95" }
serde-wasm-bindgen = { version = "0.6.5" }
console_error_panic_hook = { version = "0.1.7" }
[workspace.metadata.workspaces]
allow_branch = "main"
[profile.release]
# Configurations explicitly listed here for clarity.
# Using the best options for performance.
opt-level = 3
lto = "fat"
codegen-units = 1
strip = "symbols"
debug = false
panic = "abort" # Let it crash and force ourselves to write safe Rust.
# Use the `--profile release-debug` flag to show symbols in release mode.
# e.g. `cargo build --profile release-debug`
[profile.release-debug]
inherits = "release"
strip = false
debug = true
[profile.dev.package]
criterion.opt-level = 3
insta.opt-level = 3
similar.opt-level = 3