about summary refs log tree commit diff
path: root/src/tools/test-float-parse/Cargo.toml
blob: e407e322f9e190c9b361f69e90fdd13239ab088a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "test-float-parse"
version = "0.1.0"
edition = "2024"
publish = false

[dependencies]
indicatif = { version = "0.17.8", default-features = false }
num = "0.4.3"
rand = "0.9.0"
rand_chacha = "0.9.0"
rayon = "1"

[lib]
name = "test_float_parse"

[lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = [
    # Internal features aren't marked known config by default
    'cfg(target_has_reliable_f16)',
]