1
Fork 0

Fallout from the libcollections movement

This commit is contained in:
Alex Crichton 2014-05-29 19:03:06 -07:00
parent 6a585375a0
commit 760b93adc0
130 changed files with 331 additions and 340 deletions

View file

@ -16,7 +16,6 @@
#![feature(globs, struct_variant, managed_boxes, macro_rules, phase)]
extern crate collections;
extern crate debug;
extern crate getopts;
extern crate libc;
@ -403,7 +402,7 @@ fn json_output(krate: clean::Crate, res: Vec<plugins::PluginJson> ,
// "crate": { parsed crate ... },
// "plugins": { output of plugins ... }
// }
let mut json = box collections::TreeMap::new();
let mut json = box std::collections::TreeMap::new();
json.insert("schema".to_string(),
json::String(SCHEMA_VERSION.to_string()));
let plugins_json = box res.move_iter()