mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-27 02:53:43 +00:00
In particular, this includes updates to Rug that we can make use of [1], [2], [3], [4]. [1]: https://gitlab.com/tspiteri/rug/-/issues/78 [2]: https://gitlab.com/tspiteri/rug/-/issues/80 [3]: https://gitlab.com/tspiteri/rug/-/issues/76 [4]: https://gitlab.com/tspiteri/rug/-/issues/73
22 lines
399 B
TOML
22 lines
399 B
TOML
[package]
|
|
name = "libm-macros"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
heck = "0.5.0"
|
|
proc-macro2 = "1.0.93"
|
|
quote = "1.0.38"
|
|
syn = { version = "2.0.96", features = ["full", "extra-traits", "visit-mut"] }
|
|
|
|
[lints.rust]
|
|
# Values used during testing
|
|
unexpected_cfgs = { level = "warn", check-cfg = [
|
|
'cfg(f16_enabled)',
|
|
'cfg(f128_enabled)',
|
|
] }
|