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
27 lines (23 loc) · 650 Bytes
/
Cargo.toml
File metadata and controls
27 lines (23 loc) · 650 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
[package]
authors = ["Devon Govett <devongovett@gmail.com>"]
name = "parcel-css"
version = "0.1.0"
edition = "2018"
[lib]
crate-type = ["cdylib"]
[dependencies]
napi = { version = "1", features = ["serde-json"] }
napi-derive = "1"
serde = { version = "1.0.123", features = ["derive"] }
serde_bytes = "0.11.5"
cssparser = "0.28.1"
cssparser-macros = "*"
selectors = "*"
indoc = "*"
itertools = "*"
smallvec = { version = "1.7.0", features = ["union"] }
bitflags = "*"
[target.'cfg(target_os = "macos")'.dependencies]
jemallocator = { version = "0.3.2", features = ["disable_initial_exec_tls"] }
[build-dependencies]
napi-build = { version = "1" }