Mike Boutin

Results 164 comments of Mike Boutin

`error: A least one underlying storage type must be enabled. See the features section of uom documentation for available underlying storage type options.` I believe all the warnings are a...

Odd. The command line you posted above only shows 'serde'/'use_serde' enabled: `--cfg 'feature="serde"' --cfg 'feature="use_serde"'`. Any ideas how that command is getting generated with just the `serde` features and nothing...

Glad you found the root cause! Marking this issue as closed.

Thanks for submitting the issue. This goes along with #91, but I think should be tracked separately.

The function is already available as `hypot` for `f32`/`f64`: https://github.com/iliekturtles/uom/blob/a8b34eac9d1e4bc47f56ededa60656efe80a10a0/src/system.rs#L616-L629 If you're looking to see how to make a function that is generic on the inputs then I expect we're...

My guess is that the `to_base` call in `new()` isn't being optimized out even when the given unit matches the base unit. Non-floating point underlying storage types haven't gotten the...

As noted in https://github.com/iliekturtles/uom/issues/382 an ancient version of `uom` is being used. Using v0.30.0 resolve this error.

Really cool to see what you have done! The addition of the `Units` enum was really a stop-gap fix for being able to dynamically choose units and isn't very ergonomic...

Sounds like the proxy is calling itself instead of proxying the underlying function. Turbofish, like shown below, or explicitly using the full namespace to the function should resolve. I kicked...