How to call ravif crate from image crate input in rust
I am tring to add AVIF support using ravif
crate because it’s pure rust and no FFI needed.
What’s the polite way for my library to return types from another crate?
I’m making a toy numerical crate, and some of my return types are complex numbers. I’m relying on num-complex
under the hood, but my return types are also complex numbers. I considered simply returning tuples of f64
values, but that doesn’t feel right.
Is there a way to test a crates.io publishing pipeline without actually publishing to the production crates.io?
I’m looking to publish my first Rust package on crates. To get this right there’s quite a lot of work I need to go through to setup github actions, tokens and publishing, ensuring all documentation is correctly squared away so I know how it will render on crates.io.