-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (43 loc) · 976 Bytes
/
Cargo.toml
File metadata and controls
47 lines (43 loc) · 976 Bytes
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
[package]
name = "custom_float"
version = "0.3.1"
edition = "2024"
license = "MIT"
description = "Custom floating-point types"
repository = "https://github.com/sigurd4/custom_float"
keywords = ["float", "number", "custom", "ieee754"]
categories = ["algorithms", "compression", "mathematics", "no-std::no-alloc", "science"]
exclude = ["plots"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = [
"bytemuck",
"ati",
"g_711",
"google",
"ibm",
"intel",
"khronos",
"nvidia",
"pixar"
]
ati = []
g_711 = []
google = []
ibm = []
intel = []
khronos = []
nvidia = []
pixar = []
bytemuck = ["dep:bytemuck"]
use_std_float = []
[dependencies]
moddef = "0.3.0"
num-traits = "0.2.19"
bytemuck = {version = "1.23.1", features = ["derive"], optional = true}
serde = {version = "*", optional = true}
[dev-dependencies]
num = "0.4.3"
plotters = "0.3.7"
linspace = "0.1.1"
libm = "0.2.15"