-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 694 Bytes
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 694 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 = "intersect2d"
version = "0.4.2"
authors = ["eadf <lacklustr@protonmail.com>"]
edition = "2018"
description = "Line segment intersection detection"
readme = "README.md"
repository = "https://github.com/eadf/intersect2d.rs"
license = "AGPL-3.0"
keywords = ["intersection", "sweepline", "geometry"]
[[example]]
name = "fltk_gui"
path = "example/fltk_gui.rs"
[dependencies]
geo = "0.18"
rb_tree = "0.5"
approx = "0.5"
num-traits = "0.2"
ahash = "0.7"
thiserror = "1.0"
[dev-dependencies]
fltk = "1.2"
itertools = "0.10"
criterion = "0.3"
[features]
# this is used to print algorithm progression traces to the console
console_trace = []
[[bench]]
name = "bench"
harness = false