-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (30 loc) · 786 Bytes
/
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
[package]
name = "catsmoothing-python"
version = "0.2.2"
authors = ["Taher Chegini <cheginit@gmail.com>"]
homepage = "https://github.com/cheginit/catsmoothing"
license = "MIT"
description = "Smoothing Shapely geometries using Catmull-Rom spline"
readme = "README.md"
edition = "2021"
include = ["/src", "/catsmoothing", "/LICENSE", "pyproject.toml", "Cargo.toml", "Cargo.lock"]
[lib]
name = "catsmoothing"
crate-type = ["cdylib", "rlib"]
doc = false
[dependencies]
nalgebra = { version = "*", features = ["serde"] }
thiserror = "*"
rayon = "*"
env_logger = "*"
num_cpus = "*"
[dev-dependencies]
approx = "*"
rand = { version = "*", features = ["std"] }
rand_distr = "*"
[dependencies.pyo3]
version = "*"
features = ["extension-module"]
optional = true
[features]
python = ["pyo3"]