-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
Cargo.toml
55 lines (49 loc) · 1.63 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
[package]
name = "half"
# Remember to keep in sync with html_root_url crate attribute
version = "2.4.1"
authors = ["Kathryn Long <squeeself@gmail.com>"]
description = "Half-precision floating point f16 and bf16 types for Rust implementing the IEEE 754-2008 standard binary16 and bfloat16 types."
repository = "https://github.com/starkat99/half-rs"
readme = "README.md"
keywords = ["f16", "bfloat16", "no_std"]
license = "MIT OR Apache-2.0"
categories = ["no-std", "data-structures", "encoding"]
edition = "2021"
rust-version = "1.70"
exclude = [".git*", ".editorconfig", ".circleci"]
[features]
default = ["std"]
std = ["alloc"]
use-intrinsics = [] # Deprecated
alloc = []
rand_distr = ["dep:rand", "dep:rand_distr"]
[dependencies]
cfg-if = "1.0.0"
bytemuck = { version = "1.4.1", default-features = false, features = [
"derive",
], optional = true }
serde = { version = "1.0", default-features = false, features = [
"derive",
], optional = true }
num-traits = { version = "0.2.14", default-features = false, features = [
"libm",
], optional = true }
zerocopy = { version = "0.6.0", default-features = false, optional = true }
rand = { version = "0.8.5", default-features = false, optional = true }
rand_distr = { version = "0.4.3", default-features = false, optional = true }
rkyv = { version = "0.7", optional = true }
[target.'cfg(target_arch = "spirv")'.dependencies]
crunchy = "0.2.2"
[dev-dependencies]
criterion = "0.4.0"
quickcheck = "1.0"
quickcheck_macros = "1.0"
rand = "0.8.5"
crunchy = "0.2.2"
[[bench]]
name = "convert"
harness = false
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
all-features = true