-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
59 lines (45 loc) · 1.47 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 = "guff-matrix"
version = "0.1.12"
edition = "2018"
description = "Fast Galois Field matrix multiplication"
homepage = "https://github.com/declanmalone/guff-matrix"
categories = ["mathematics"]
keywords = ["IDA", "Galois", "matrix", "maths", "SIMD"]
license = "GPL-2.0-or-later OR LGPL-2.0-or-later"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# Use criterion for benchmarking all sorts of things
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "vector_mul"
harness = false
[[bench]]
name = "arm_ops"
harness = false
[profile.release]
debug = true
[dependencies]
"num" = "0.4.0"
#"num-traits" = "0.2.14"
#guff = "~0.1"
"guff" = { path="../guff", version = "~0.1" }
[features]
# enable software simulation of matrix multiply algorithm
# makes crate::simulator available.
simulator = []
# enable 'arm_dsp' on armv6/armv7 boards with 'dsp' extension
# for 4-way simd long multiplication
arm_dsp = []
# enable 'arm_long' on armv7+neon/armv8 boards
# for 16-way simd long multiplication
arm_long = []
# enable 'arm_vmull' on armv7+neon/armv8 boards
# for 8-way simd long multiplication (fastest!)
arm_vmull = []
# I want documentation generated for features
[package.metadata.docs.rs]
#features = ["simulator", "arm_dsp", "arm_long", "arm_vmull"]
all-features = true
targets = ["x86_64-unknown-linux-gnu", "armv7-unknown-linux-gnueabihf", "aarch64-unknown-linux-gnu"]
rustdoc-args = ["--cfg", "doc_cfg"]