-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (35 loc) · 1.05 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
[package]
name = "rshapes"
version = "0.1.0"
edition = "2021"
autobenches = true
authors = ["Leonid Meleshin <[email protected]>"]
[lib]
bench = false
[features]
serde-serialize = ["dep:serde", "nalgebra/serde-serialize"]
proptest-support = [ "dep:proptest", "dep:proptest-derive", "nalgebra/proptest-support" ]
[dependencies]
nalgebra = { version = "^0.33.0" }
num = "^0.4.1"
ordered-float = "^4.2.0"
proptest = { version = "1", optional = true, default-features = false, features = ["std"] }
proptest-derive = { version = "^0.5.0", optional = true }
serde = { version = "1.0", default-features = false, features = [ "derive" ], optional = true }
array-init = "^2.1.0"
derivative = "^2.2.0"
getset = "^0.1.2"
[dev-dependencies]
criterion = { version = "^0.5", features = ["html_reports"] }
float-cmp = "^0.10.0"
test-case = "3"
test-strategy = "^0.4.0"
mutants = "^0.0.3"
serde_json = "1.0.116"
rshapes = { path = ".", features = ["proptest-support", "serde-serialize"] }
[[bench]]
name = "within"
harness = false
[[bench]]
name = "distance_to_point"
harness = false