-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 747 Bytes
/
Cargo.toml
File metadata and controls
34 lines (29 loc) · 747 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
[package]
name = "fast-posit"
version = "0.2.0"
edition = "2024"
description = "Software implementation of the Posit floating point format"
documentation = "https://docs.rs/fast-posit"
repository = "https://github.com/andrepd/posit-rust"
keywords = ["float", "arithmetic", "posit", "unum"]
categories = ["algorithms", "mathematics", "no-std", "no-std::no-alloc"]
license = "LGPL-3.0"
[dev-dependencies]
proptest = "1.6.0"
criterion = "0.5.1"
malachite = "0.6.1"
libc = "0.2.174"
rand = "0.9.2"
[[bench]]
name = "microbench"
harness = false
required-features = ["bench"]
[[bench]]
name = "vs_external"
harness = false
required-features = ["bench"]
[features]
bench = []
cerlane-softposit = []
berkeley-softfloat = []
stillwater-softposit = []