mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-17 16:56:29 +00:00
Distribute everything from `libm/` to better locations in the repo. `libm/libm/*` has not moved yet to avoid Git seeing the move as an edit to `Cargo.toml`. Files that remain to be merged somehow are in `etc/libm`.
22 lines
400 B
TOML
22 lines
400 B
TOML
[package]
|
|
name = "libm-macros"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
publish = false
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
heck = "0.5.0"
|
|
proc-macro2 = "1.0.94"
|
|
quote = "1.0.40"
|
|
syn = { version = "2.0.100", features = ["full", "extra-traits", "visit-mut"] }
|
|
|
|
[lints.rust]
|
|
# Values used during testing
|
|
unexpected_cfgs = { level = "warn", check-cfg = [
|
|
'cfg(f16_enabled)',
|
|
'cfg(f128_enabled)',
|
|
] }
|