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
32 lines (27 loc) · 665 Bytes
/
Cargo.toml
File metadata and controls
32 lines (27 loc) · 665 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
[workspace]
members = [
"node"
]
[package]
authors = ["Devon Govett <devongovett@gmail.com>"]
name = "parcel_css"
version = "1.0.0-alpha.5"
description = "A CSS parser, transformer, and minifier"
license = "MIT"
edition = "2018"
keywords = [ "CSS", "minifier", "Parcel" ]
repository = "https://github.com/parcel-bundler/parcel-css"
[lib]
crate-type = ["rlib"]
[dependencies]
serde = { version = "1.0.123", features = ["derive"] }
cssparser = "0.28.1"
selectors = "0.23.0"
itertools = "0.10.1"
smallvec = { version = "1.7.0", features = ["union"] }
bitflags = "1.3.2"
parcel_sourcemap = "2.0.0"
[dev-dependencies]
indoc = "1.0.3"
[profile.release]
lto = true