generated from napi-rs/package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (31 loc) · 779 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
[package]
authors = ["Jackson Ming Hu <[email protected]>"]
edition = "2021"
name = "epaperify"
version = "1.0.3"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[dependencies]
napi = { version = "2", default-features = false, features = [
"tokio_fs",
"napi8",
"tokio_rt",
"serde-json",
"async",
"experimental",
"latin1",
"chrono_date"
]}
napi-derive = { version = "2", features = ["type-def"] }
image = "0.25"
serde = "1"
serde_derive = "1"
serde_json = "1"
png = "0.17.14"
[target.'cfg(all(any(windows, unix), target_arch = "x86_64", not(target_env = "musl")))'.dependencies]
mimalloc = {version = "0.1"}
[build-dependencies]
napi-build = "1"
[profile.release]
lto = true