-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (32 loc) · 1.09 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
[package]
name = "wavecar_rs"
version = "0.1.0"
authors = ["Ionizing <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
description = "A lib to manipulate VASP's WAVECAR"
homepage = "https://github.com/Ionizing/wavecar_rs"
repository = "https://github.com/Ionizing/Wavecar_rs"
readme = "README.md"
exclude = ["tests/*"]
[package.metadata.docs.rs]
targets = []
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["fftw-system", "blas-system"]
fftw-system = ["fftw/system"]
fftw-source = ["fftw/source"]
fftw-mkl = ["fftw/intel-mkl"]
blas-system = ["ndarray/blas"]
[dependencies]
byteorder = "1.3"
ndarray = {version = "0.13.1", features = ["rayon", "approx"]}
ndarray-linalg = {version = "0.12.1", features = []}
fftw = {version = "0.6.2", default-features = false}
vasp-poscar = "0.3.2"
num = "0.2.0"
rayon = "1.3.1"
vaspchg_rs = "0.1.1"
log = "0.4.11"
blas-src = {version = "0.2.1", default-features = false, features = ["openblas"]}
openblas-src = {version = "0.6.0", default-features = false, features = ["cblas", "system"]}