2024-10-16 22:37:44 -05:00
|
|
|
[package]
|
|
|
|
|
name = "libm-macros"
|
|
|
|
|
version = "0.1.0"
|
2025-03-19 00:11:39 +00:00
|
|
|
edition = "2024"
|
2024-10-28 13:22:57 -05:00
|
|
|
publish = false
|
2025-04-21 07:15:48 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2024-10-16 22:37:44 -05:00
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2024-10-31 02:44:00 -05:00
|
|
|
heck = "0.5.0"
|
2025-06-01 19:22:42 +00:00
|
|
|
proc-macro2 = "1.0.95"
|
2025-03-18 23:51:19 +00:00
|
|
|
quote = "1.0.40"
|
2025-06-01 19:22:42 +00:00
|
|
|
syn = { version = "2.0.101", features = ["full", "extra-traits", "visit-mut"] }
|
2024-10-26 00:44:50 -05:00
|
|
|
|
|
|
|
|
[lints.rust]
|
|
|
|
|
# Values used during testing
|
|
|
|
|
unexpected_cfgs = { level = "warn", check-cfg = [
|
|
|
|
|
'cfg(f16_enabled)',
|
|
|
|
|
'cfg(f128_enabled)',
|
|
|
|
|
] }
|