forked from Lokathor/wide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (24 loc) · 836 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
[package]
name = "wide"
description = "A crate to help you go wide."
version = "0.7.30"
authors = ["Lokathor <[email protected]>"]
repository = "https://github.com/Lokathor/wide"
readme = "README.md"
keywords = ["simd", "wide", "lokathor"]
categories = ["data-structures", "hardware-support"]
edition = "2018"
license = "Zlib OR Apache-2.0 OR MIT"
# Aarch64 needs 1.59 while others need 1.56
# When updating, also update CI workflows and the badge in the README.
rust-version = "1.61"
[features]
default = ["std"]
# Activate `std` within the crate. Currently this gives a much faster `sqrt`
# impl when an explicit hardware sqrt isn't available.
std = []
serde = ["dep:serde"]
[dependencies]
safe_arch = { version = "0.7", features = ["bytemuck"] }
serde = { version = "1", default-features = false, optional = true }
bytemuck = "1"