-
Notifications
You must be signed in to change notification settings - Fork 25
/
Cargo.toml
36 lines (31 loc) · 920 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
36
[package]
name = "simdeez"
version = "2.0.0-dev3"
authors = ["Jack Mott <[email protected]>", "Arduano"]
description = "SIMD library to abstract over different instruction sets and widths"
license = "Apache-2.0/MIT"
documentation = "https://docs.rs/simdeez/"
readme = "README.md"
keywords = ["SIMD", "avx2", "sse", "performance", "no_std"]
repository = "https://github.com/jackmott/simdeez"
categories = ["hardware-support", "science", "game-engines"]
edition = "2018"
[lib]
doctest = false
[features]
default = []
sleef = ["sleef-sys"]
no_std = ["dep:libm"]
[dependencies]
paste = "1.0.11"
# To build this, we need nightly, cmake installed, and clang dlls in the clang dll path
sleef-sys = { version = "0.1.2", optional = true }
cfg-if = "1.0.0"
libm = { version = "0.2.6", optional = true }
[dev-dependencies]
rand = "0.8.5"
rand_chacha = "0.3.1"
criterion = "0.4.0"
[[bench]]
name = "numparse"
harness = false