-
Notifications
You must be signed in to change notification settings - Fork 628
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
Actually use JSON storage for JSON data #1237
Conversation
We also never use `features` as a `HashMap<String, Vec<String>>`, so we can just pass it through from the database in a lower level representation.
Seems fine. The only thing I can think of this affecting is this as-yet-unimplemented feature request to display a crate's features on its page, and that would be from JSON anyway. Clarifying for anyone looking at this that this only affects getting a crate's features (per-version) into and out of the crates.io database, and does not touch the serialization to the crates.io index (which happens in git.rs. bors: r+ |
Build failed |
Failure is legit. I will fix when the baby stops screaming bloody murder
…On Wed, Jan 24, 2018 at 7:00 PM bors-voyager[bot] ***@***.***> wrote:
Build failed
- continuous-integration/travis-ci/push
<https://travis-ci.org/rust-lang/crates.io/builds/333076059?utm_source=github_status&utm_medium=notification>
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#1237 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABdWK3njMdqfqOQKI_Ytt0zUj7tfxuJ4ks5tN-AsgaJpZM4RjT7n>
.
|
bors: r+ |
1237: Actually use JSON storage for JSON data r=carols10cents We also never use `features` as a `HashMap<String, Vec<String>>`, so we can just pass it through from the database in a lower level representation. 1439: Bump `env_logger` r=carols10cents 1441: `dyn` all the things r=carols10cents `#![deny(bare_trait_objects)]` is added and all existing trait objects are documented with the `dyn` keyword.
Build succeeded |
We also never use
features
as aHashMap<String, Vec<String>>
, so wecan just pass it through from the database in a lower level
representation.