You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The resent code change in toml crate made it require rustc 1.36+.
I see, you just dropped support for older versions, but unfortunately I can't really depend on trybuild conditionally (i.e. depending on rustc version, if it's possible please tell me). Features won't help me too because dev-dependencies cannot be optional.
Also, it's impossible to work this around by simply stopping running tests on rustc <1.36 because the toml crate is going to have to be build one way or another.
The only real options here are either drop support for rustc <1.36 for my crate (highly undesirable) or ditch trubuild (even less desirable).
Actually, I don't see any particular reason to move to toml 0.5.3. Could you please restrict this dependency and bring support for 1.31 back?
The text was updated successfully, but these errors were encountered:
I don't really want to get into the super conservative compiler version support game with trybuild. If that doesn't work, the alternative would be you could fork trybuild and maintain the old compiler support in the fork.
The resent code change in
toml
crate made it require rustc 1.36+.I see, you just dropped support for older versions, but unfortunately I can't really depend on
trybuild
conditionally (i.e. depending on rustc version, if it's possible please tell me). Features won't help me too becausedev-dependencies
cannot be optional.Also, it's impossible to work this around by simply stopping running tests on rustc <1.36 because the
toml
crate is going to have to be build one way or another.The only real options here are either drop support for rustc <1.36 for my crate (highly undesirable) or ditch
trubuild
(even less desirable).Actually, I don't see any particular reason to move to
toml 0.5.3
. Could you please restrict this dependency and bring support for 1.31 back?The text was updated successfully, but these errors were encountered: