-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
34 lines (29 loc) · 946 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
34
[package]
name = "i_overlay"
version = "1.9.2"
authors = ["Nail Sharipov <nailxsharipov@gmail.com>"]
edition = "2021"
description = "Boolean Operations for 2D Polygons: Supports intersection, union, difference, xor, and self-intersections for all polygon varieties."
license = "MIT"
repository = "https://github.com/iShape-Rust/iOverlay"
readme = "README.md"
[dependencies]
i_float = { version = "~1.5.1" }
i_shape = { version = "~1.5.0" }
i_tree = { version = "~0.8.3" }
i_key_sort = { version = "~0.2.0" }
#i_float = { path = "../iFloat" }
#i_shape = { path = "../iShape" }
#i_tree = { path = "../iTree" }
#i_key_sort = { path = "../iKeySort" }
[dependencies.rayon]
version = "^1.10"
optional = true
[features]
default = ["allow_multithreading"]
allow_multithreading = ["rayon"]
glam = ["i_float/glam"]
[dev-dependencies]
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
rand = { version = "^0.8.5", features = [] }