-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (47 loc) · 1.11 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
53
54
55
56
57
[package]
name = "bsplines"
license = "Apache-2.0"
version = "0.0.1-alpha.9"
authors = [
"Michael A. Heuer <[email protected]>",
]
edition = "2021"
description = "N-dimensional B-spline curves and their derivatives built on top of nalgebra"
keywords = ["b-spline", "spline", "curve", "derivatives", "nalgebra"]
categories = [
"mathematics",
"algorithms",
"graphics",
"no-std",
]
readme = "README.md"
homepage = "https://github.com/michael-a-heuer/bsplines"
repository = "https://github.com/michael-a-heuer/bsplines"
documentation = "https://docs.rs/bsplines"
[package.metadata.docs.rs]
features = ["doc-images"]
[features]
doc-images = []
[lib]
name = "bsplines"
path = "src/lib.rs"
[[example]]
name = "doc-images"
path = "doc-images/src/main.rs"
[lints.rust]
unsafe_code = "forbid"
non_snake_case = "allow"
dead_code = "allow"
[lints.clippy]
enum_glob_use = "deny"
type_complexity = "allow"
[dependencies]
embed-doc-image = "0.1.4"
nalgebra = "0.32.3"
thiserror = "1.0.56"
[dev-dependencies]
rstest = "0.18.2"
approx = "0.5.1"
plotters = "0.3.5"
plotters-arrows = "0.1.0"
num-traits = "0.2.17"