-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (31 loc) · 988 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
33
34
35
36
[package]
name = "postcss_value_parser"
version = "0.0.1"
description = "Transforms css values into the tree"
authors = ["the postcss-rs authors"]
edition = "2021"
readme = "README.md"
repository = "https://github.com/postcss-rs/postcss-rs-value-parser"
license = "MIT"
keywords = ["css", "syntax", "postcss", "parser", "ast"]
[dependencies]
memchr = "2.4"
once_cell = "1.8.0"
[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }
[lib]
# `cargo bench` Gives "Unrecognized Option" Errors for Valid Command-line Options
# https://bheisler.github.io/criterion.rs/book/faq.html#cargo-bench-gives-unrecognized-option-errors-for-valid-command-line-options
bench = false
# NB: the `bench` and `release` profiles must remain EXACTLY the same.
[profile.release]
codegen-units = 1
lto = true
panic = "abort"
debug = true
# NB: the `bench` and `release` profiles must remain EXACTLY the same.
[profile.bench]
codegen-units = 1
lto = true
panic = "abort"
debug = true