mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-08 02:08:10 +00:00
In particular, this includes a fix to `iai-callgrind` that will allow us to simplify our benchmark runner.
23 lines
430 B
TOML
23 lines
430 B
TOML
[package]
|
|
name = "libm-macros"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
publish = false
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
heck = "0.5.0"
|
|
proc-macro2 = "1.0.95"
|
|
quote = "1.0.40"
|
|
syn = { version = "2.0.101", features = ["full", "extra-traits", "visit-mut"] }
|
|
|
|
[lints.rust]
|
|
# Values used during testing
|
|
unexpected_cfgs = { level = "warn", check-cfg = [
|
|
'cfg(f16_enabled)',
|
|
'cfg(f128_enabled)',
|
|
] }
|