-
Notifications
You must be signed in to change notification settings - Fork 21
What's the minimum rustc version supported? #78
Comments
Looks like that feature was stablized in 1.19 What is your use case for holding back your rustc version? |
Right. I looked into the code and noticed that I'm tracking Firefox's minimum rustc version for UNIC, as also do many Servo projects. Here's the status for Firefox: https://wiki.mozilla.org/Oxidation Basically, it's currently 1.17.0, but in a few days will become 1.19.0. In many projects, we add a specific rust version to |
Thanks. I hear of discussions of libraries supporting old stable versions but haven't heard too much the use case of why their users need them. I think other crates are doing a |
Looking into the future a bit, I don't think we'll need any of the features
stabilized in 1.23. Not sure about our dependencies, though.
I'm fine with adding a 1.19 build to Travis.
Ed Page <notifications@github.com> schrieb am Di. 7. Nov. 2017 um 06:27:
… Thanks. I hear of discussions of libraries supporting old stable versions
but haven't heard too much the use case of why their users need them.
I think other crates are doing a stable-2. Something for us to consider.
(and yes, if we do it, we would have the CI enforce it).
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#78 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AABOX1pqUokqSWLR3caZC2zYfuslevUvks5sz-pVgaJpZM4QUMiD>
.
|
With
rust-1.17.0
orrust-1.18.0
, I'm get this error on build time:It's fine on stable channel, which is at
rust-1.21.0
right now. So, the minimum version supported in larger that1.18.0
, less than or equal to1.21.0
.Looking at the
.travis.yml
file here, I noticed there's no minimum rustc version being maintained.Could you please indicate what's the minimum rustc version supported by
assert_cli
?FYI, if supporting versions a few months old is not a goal here, I will have to to gate my cli test behind a feature, which would make my CI script more complicated.
So, any chance we can have some versions older than stable also supported?
assert_cli
version: v0.5.4The text was updated successfully, but these errors were encountered: