-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (33 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
41 lines (33 loc) · 1.28 KB
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
36
37
38
39
40
41
[package]
name = "i_overlay"
version = "4.3.0"
authors = ["Nail Sharipov <nailxsharipov@gmail.com>"]
edition = "2024"
description = "Boolean Operations for 2D Polygons: Supports intersection, union, difference, xor, and self-intersections for all polygon varieties."
license = "MIT OR Apache-2.0"
repository = "https://github.com/iShape-Rust/iOverlay"
readme = "README.md"
categories = ["algorithms", "graphics", "science::geo", "mathematics", "no-std"]
[dependencies]
i_float = { version = "~1.16.0" }
i_shape = { version = "~1.16.0" }
i_tree = { version = "~0.17.0" }
i_key_sort = { version = "~0.10.1" }
#i_float = { path = "../../iFloat"}
#i_shape = { path = "../../iShape"}
#i_tree = { path = "../../iTree" }
#i_key_sort = { path = "../../iKeySort" }
rayon = { optional = true, version = "^1.10" }
[features]
default = []
glam = ["i_float/glam"]
serde = ["i_float/serde", "i_shape/serde"]
allow_multithreading = ["dep:rayon"]
[dev-dependencies]
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
rand = { version = "~0.9", features = ["alloc"] }
#i_float = { path = "../../iFloat", features = ["serde"] }
#i_shape = { path = "../../iShape", features = ["serde"] }
i_float = { version = "~1.16.0", features = ["serde"] }
i_shape = { version = "~1.16.0", features = ["serde"] }