-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (41 loc) · 824 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
37
38
39
40
41
42
43
44
45
[package]
edition = "2021"
name = "deepnest_svg-preprocessor"
version = "0.0.0"
[lib]
crate-type = ["cdylib"]
[dependencies]
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
napi = { version = "2.16.13", features = [
"compat-mode",
"napi1",
"napi2",
"napi3",
"napi4",
"napi5",
"napi6",
"napi7",
"napi8",
"napi9",
"full",
"serde-json",
"serde-json-ordered",
"serde-json",
"experimental",
"latin1",
"chrono_date",
"object_indexmap",
"tokio",
"async",
"tokio_rt",
"tokio_fs",
"tokio_macros",
"deferred_trace",
] }
napi-derive = { version = "2.16.13", features = ["type-def"] }
usvg = "0.44.0"
[build-dependencies]
napi-build = "2.0.1"
[profile.release]
lto = true
strip = "symbols"