-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (27 loc) · 848 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
[package]
name = "saori-pie-chart"
version = "1.0.1"
edition = "2021"
authors = [ "tukinami seika" ]
license = "MIT"
readme = "README.md"
description = "SAORI to create pie chart png image."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
svg-pie-chart = { git = "/~https://github.com/tukinami/svg-pie-chart.git" }
resvg = { version = "0.40.0", default-features = false, features = [ "text", "system-fonts", "memmap-fonts" ] }
png = "0.17.13"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["winbase", "libloaderapi", "stringapiset"] }
[dev-dependencies]
tempfile = "3.10.1"
encoding_rs = "0.8.33"
[lib]
name = "piechart"
path = "src/lib.rs"
crate-type = ["rlib", "cdylib"]
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1