-
-
Notifications
You must be signed in to change notification settings - Fork 279
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
Switched to weak dependencies #538
Conversation
Codecov Report
@@ Coverage Diff @@
## trunk #538 +/- ##
=======================================
Coverage 54.89% 54.89%
=======================================
Files 47 47
Lines 4201 4201
=======================================
Hits 2306 2306
Misses 1895 1895
Continue to review full report at Codecov.
|
Cargo.toml
Outdated
[dependencies] | ||
bincode_derive = { path = "derive", version = "2.0.0-rc.1", optional = true } | ||
serde_incl = { package = "serde", version = "1.0", default-features = false, optional = true } | ||
serde = { package = "serde", version = "1.0", default-features = false, optional = true } |
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.
This doesn't need the package = "serde"
anymore, I think
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.
Fix the one comment left by someone else please. :)
Rust 1.60 now has weak dependencies, meaning we don't have to do our serde hack any more.
Closes #472