-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Re-export mlir_sys
#583
Comments
Cann't we |
A user can depend on |
Hmmm, but isn't the situation the same as |
|
Why do you want to use the old version of |
Different reasons. Example of the problem: If a new semver version of |
Or if there is another crate in the project that depends on |
For this one, they can just specify a minor version like
For this one, they can use a mlir-sys = "0.2"
mlir-sys1 = { version = "0.1", package = "mlir-sys" } WDYT? |
Solution for the first problem is correct, but may require some work if the project uses |
It's not difficult for melior, just 1 line in |
Add
pub use mlir_sys;
, sincemlir_sys
types appear in the public api.Inkwell
re-exportsllvm_sys
for the same reason.https://www.lurklurk.org/effective-rust/re-export.html
The text was updated successfully, but these errors were encountered: