-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (25 loc) · 791 Bytes
/
Cargo.toml
File metadata and controls
35 lines (25 loc) · 791 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
35
[package]
name = "overlay_editor"
version = "0.1.0"
edition = "2021"
publish = false
[profile.release]
opt-level = 3
lto = false
codegen-units = 1
[lib]
crate-type = ["cdylib"]
[dependencies]
#iced = { path = "../../../../iced", features = ["wgpu", "advanced"] }
iced = { version = "0.14.0", features = ["wgpu", "advanced", "fira-sans"] }
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
wasm-bindgen = "~0.2.95"
log = "0.4.22"
console_log = "^1.0.0"
console_error_panic_hook = "^0"
#i_mesh = "^0.4.0"
#i_triangle = { version = "^0.35.0", features = ["serde"] }
i_triangle = { path = "../../../../iShape/iTriangle/iTriangle", default-features = true, features = ["serde"] }
i_mesh = { path = "../../../../iShape/iMesh/iMesh" }
#ICED_BACKEND=wgpu cargo r -r