-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (23 loc) · 822 Bytes
/
Cargo.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
[package]
name = "ishape_wasm"
version = "2.3.1"
authors = ["Nail Sharipov <nailxsharipov@gmail.com>"]
edition = "2021"
description = "Triangulation and Boolean Operations for 2D Polygons. Supported operations: intersection, union, difference, XOR, and self-intersections for all polygon varieties."
license = "MIT"
repository = "https://github.com/iShape-Rust/iShape-js"
[profile.release]
opt-level = 3
lto = false
codegen-units = 1
[lib]
crate-type = ["cdylib"]
[dependencies]
i_triangle = { version = "0.39.1", features = ["serde"] }
#i_triangle = { path = "../iTriangle/iTriangle", features = ["serde"] }
log = "0.4.22"
console_log = "^1.0.0"
console_error_panic_hook = "^0"
wasm-bindgen = "^0.2"
serde = { version = "^1.0", default-features = false, features = ["derive", "alloc"] }
serde-wasm-bindgen = "^0.6"