I was compiling the crate locally to try to investigate some internal changes, and I noticed that the crate checks a bunch of undeclared features. Specifically I get a lot of warnings for these features:
folded_multiply
specialize
Additionally I get warnings for unknown target_pointer_width = "128" and fuzzing. I'm assuming all of this is intentional, but I'm confused about how in particular the features are turned on. Is that code where one has to temporarily add these features to the Cargo.toml?
I'm mostly trying to figure out how to test all of this if I make changes.
I was compiling the crate locally to try to investigate some internal changes, and I noticed that the crate checks a bunch of undeclared features. Specifically I get a lot of warnings for these features:
folded_multiplyspecializeAdditionally I get warnings for unknown
target_pointer_width = "128"andfuzzing. I'm assuming all of this is intentional, but I'm confused about how in particular the features are turned on. Is that code where one has to temporarily add these features to theCargo.toml?I'm mostly trying to figure out how to test all of this if I make changes.