forked from linebender/kurbo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (40 loc) · 1.02 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
[package]
name = "kurbo"
version = "0.9.5"
authors = ["Raph Levien <[email protected]>"]
license = "MIT/Apache-2.0"
edition = "2021"
keywords = ["graphics", "curve", "curves", "bezier", "geometry"]
repository = "https://github.com/linebender/kurbo"
description = "A 2D curves library"
readme = "README.md"
categories = ["graphics"]
[package.metadata.docs.rs]
features = ["mint", "schemars", "serde"]
[features]
default = ["std"]
std = []
[dependencies]
smallvec = "1.10"
[dependencies.arrayvec]
version = "0.7.1"
default-features = false
[dependencies.libm]
version = "0.2.6"
optional = true
[dependencies.mint]
version = "0.5.1"
optional = true
[dependencies.schemars]
version = "0.8.6"
optional = true
[dependencies.serde]
version = "1.0.105"
optional = true
default-features = false
features = ["alloc", "derive"]
# This is used for research but not really needed; maybe refactor.
[dev-dependencies]
rand = "0.8.0"
[target.'cfg(target_arch="wasm32")'.dev-dependencies]
getrandom = { version = "0.2.0", features = ["js"] }