-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
52 lines (43 loc) · 1.28 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "flo_curves"
version = "0.8.0"
authors = ["Andrew Hunter"]
license = "Apache-2.0"
repository = "https://github.com/Logicalshift/flo_curves"
description = "Library for manipulating Bezier curves"
documentation = "http://docs.rs/flo_curves/"
readme = "README.md"
edition = "2018"
include = [ "Cargo.toml", "LICENSE", "src/**/*", "demos/src/**/*.rs", "demos/*.toml", "demos/*.md", "logo*.png", "README.md", "THANKS.md" ]
keywords = ["bezier", "geometry", "graphics"]
categories = ["algorithms","rendering"]
[features]
extra_checks = []
[dependencies]
itertools = "0.11"
roots = "0.0.8"
smallvec = { version = "1.10", features = ["const_generics"] }
ouroboros = "0.17"
[dev-dependencies]
rand = "0.8"
criterion = "0.5"
[[bench]]
name = "rasterize"
path = "benches/rasterize.rs"
harness = false
[[bench]]
name = "vectorize"
path = "benches/vectorize.rs"
harness = false
[[bench]]
name = "sweep"
path = "benches/sweep.rs"
harness = false
[[bench]]
name = "nearest_point"
path = "benches/nearest_point.rs"
harness = false
[[bench]]
name = "space"
path = "benches/space.rs"
harness = false