-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (23 loc) · 822 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (23 loc) · 822 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
[package]
name = "vibin"
version = "1.0.0"
edition = "2021"
rust-version = "1.64"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
image = { version = "0.24", default-features = false, features = ["gif"] }
kira = { version = "0.8" }
mutself = { version = "0.2", path = "../mutself" }
self-replace = { version = "1", path = "../self-replace" }
softbuffer = "0.3"
winit = "0.28"
[target.'cfg(windows)'.dependencies]
object = { version = "0.31", default-features = false, features = ["read_core", "write_std", "pe"] }
[target.'cfg(unix)'.dependencies]
object = { version = "0.31", default-features = false, features = ["read_core", "write_std", "elf"] }
[profile.dev.package.'*']
opt-level = 2
[profile.release]
opt-level = 3
lto = "off"
codegen-units = 4