-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (31 loc) · 802 Bytes
/
Cargo.toml
File metadata and controls
39 lines (31 loc) · 802 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
[package]
name = "fpfmt"
version = "0.3.0"
edition = "2024"
description = "Floating-point formatting and parsing, ported from rsc/fpfmt"
license = "BSD-3-Clause"
repository = "https://github.com/wado-lang/fpfmt"
autotests = false
exclude = ["tools/", "tests/"]
[features]
small = []
[workspace]
members = [".", "tools/pow10gen", "tools/bench", "tools/wasm-size"]
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
# Intentional throughout this bit-manipulation library.
cast_possible_truncation = "allow"
cast_sign_loss = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
[lints]
workspace = true
[[test]]
name = "comprehensive"
path = "tests/comprehensive.rs"
[profile.release]
lto = true
opt-level = "z"
strip = true
[dev-dependencies]
chacha8rand = "0.1"