-
Notifications
You must be signed in to change notification settings - Fork 258
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
Fix up kv feature activation #659
Conversation
@@ -44,7 +44,7 @@ release_max_level_info = [] | |||
release_max_level_debug = [] | |||
release_max_level_trace = [] | |||
|
|||
std = [] | |||
std = ["value-bag?/std"] |
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.
Is this supported in Rust 1.60 (our MSRV)?
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.
https://doc.rust-lang.org/cargo/reference/features.html
According to the doc linked, it's available starting from 1.60 so it should be fine.
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.
Thanks for fixing this. And sorry I don't catch this issue in my pr.
@@ -44,7 +44,7 @@ release_max_level_info = [] | |||
release_max_level_debug = [] | |||
release_max_level_trace = [] | |||
|
|||
std = [] | |||
std = ["value-bag?/std"] |
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.
https://doc.rust-lang.org/cargo/reference/features.html
According to the doc linked, it's available starting from 1.60 so it should be fine.
@tisonkun No problems! It's our fault for not catching it in CI. I've been meaning to add |
Closes #658
Looks like a feature combination broke in
0.4.23
, so I've addedcargo hack
to our CI to make sure we test all possible combinations.