forked from parcel-bundler/lightningcss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (35 loc) · 888 Bytes
/
Cargo.toml
File metadata and controls
41 lines (35 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[workspace]
members = [
"node",
"selectors"
]
[package]
authors = ["Devon Govett <devongovett@gmail.com>"]
name = "parcel_css"
version = "1.0.0-alpha.12"
description = "A CSS parser, transformer, and minifier"
license = "MPL-2.0"
edition = "2018"
keywords = [ "CSS", "minifier", "Parcel" ]
repository = "https://github.com/parcel-bundler/parcel-css"
[features]
default = ["grid"]
grid = []
[lib]
crate-type = ["rlib"]
[dependencies]
serde = { version = "1.0.123", features = ["derive"] }
cssparser = "0.29.1"
parcel_selectors = { version = "0.24.0", path = "./selectors" }
itertools = "0.10.1"
smallvec = { version = "1.7.0", features = ["union"] }
bitflags = "1.3.2"
parcel_sourcemap = "2.0.0"
data-encoding = "2.3.2"
lazy_static = "1.4.0"
clap = { version = "3.0.6", features = ["derive"] }
retain_mut = "0.1.5"
[dev-dependencies]
indoc = "1.0.3"
[profile.release]
lto = true