-
Notifications
You must be signed in to change notification settings - Fork 56
Update bindgen #159
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
Update bindgen #159
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,15 @@ case: | |
$ export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig | ||
``` | ||
|
||
## Minimum Supported Rust Version (MSRV) | ||
|
||
At the moment we test (via CI) and support the following Rust compiler versions: | ||
|
||
* On Ubuntu we test with the latest stable compiler version, as accessible through `rustup`. | ||
* On Fedora we test with the compiler version included with the Fedora 33 release. | ||
|
||
If you need support for other versions of the compiler, get in touch with us to see what we can do! | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe mention somewhere that for those supproted versions we test on the CI that every PR works with them. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I made a mistake on the line before the list above, will include it there. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was under the impression that we would use the packaged versions for the different distributions so in the case of ubuntu one would need to do the following: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In the Dockerfile we actually build with the pipe-to-shell command from the Rust website - but that's a good point, maybe we should try out the one included in Ubuntu. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It seems the latest supported is There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
I think we decided that as well for all the distributions that we want to support (like Fedora) but I think we should also definitely test with the latest stable Rust got from
My point being that for the case when we test on |
||
|
||
## Community channel | ||
|
||
Come and talk to us in [our Slack channel](https://app.slack.com/client/T0JK1PCN6/CPMQ9D4H1)! | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we test with the latest compiler version available in Fedora 33?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we test with the one that comes with the OS release? CC @puiterwijk
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, we test with the one that's included in Fedora 33.