-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (22 loc) · 702 Bytes
/
Cargo.toml
File metadata and controls
27 lines (22 loc) · 702 Bytes
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
[package]
name = "kbest-lap-python"
version = "0.1.0"
authors = ["Jaeseung Han <thestudentofkyoto@gmail.com>"]
edition = "2018"
[lib]
name = "rust_ext"
crate-type = ["cdylib"]
[dependencies]
ndarray = "0.15.3"
num-complex = "0.4.0"
numpy = { git = "https://github.com/PyO3/rust-numpy", branch = "main" }
ndarray-linalg = { git = "https://github.com/rust-ndarray/ndarray-linalg", features = ["openblas-static"] }
[dependencies.kbest-lap]
git = "https://github.com/studentofkyoto/kbest-assignment-enumeration-rust"
tag = "v0.1.1"
[dependencies.all-lap-rust]
git = "https://github.com/studentofkyoto/all-lap-rust"
tag = "v0.1.1"
[dependencies.pyo3]
version = "0.14.0"
features = ["extension-module"]