-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 873 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 = "rdp-rust"
version = "0.5.3"
edition = "2018"
authors = ["erik.langenborg@gmail.com"]
license = "MIT"
readme = "README.md"
[lib]
name = "rdp_rust"
crate-type = ["cdylib"]
[dependencies]
rayon = "1.5.1"
numpy = "0.13"
ndarray = { version = "0.15.3", features = ["approx"]}
[dependencies.pyo3]
version = "0.13.2"
features = ["extension-module", "abi3", "abi3-py37"]
[package.metadata.maturin]
classifier = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
requires-python = ">=3.6"
requires-dist = ["numpy>=1.16.0"]