-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (27 loc) · 696 Bytes
/
Cargo.toml
File metadata and controls
34 lines (27 loc) · 696 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
30
31
32
33
34
[package]
name = "ralia"
version = "0.1.0"
authors = ["ayomide"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
image = { version = "0.22.3"}
humantime = "1"
serde = "1.0.104"
serde_json = "1.0.48"
serde_derive = "1.0.104"
# oxipng = "2.3.0"
[dependencies.web-sys]
version = "0.3.36"
features = ['Window', 'Performance', 'PerformanceTiming', 'console']
[dependencies.wasm-bindgen]
version="0.2.59"
features=['serde-serialize']
[dependencies.oxipng]
version="2.3.0"
default-features=false
[lib]
crate-type = ["cdylib", "rlib"]
[profile.release]
# Tell `rustc` to optimize for small code size.
opt-level = "s"