granite-rust/src/librustc_save_analysis
Alex Crichton e341d603fe Remove internal liblog
This commit deletes the internal liblog in favor of the implementation that
lives on crates.io. Similarly it's also setting a convention for adding crates
to the compiler. The main restriction right now is that we want compiler
implementation details to be unreachable from normal Rust code (e.g. requires a
feature), and by default everything in the sysroot is reachable via `extern
crate`.

The proposal here is to require that crates pulled in have these lines in their
`src/lib.rs`:

    #![cfg_attr(rustbuild, feature(staged_api, rustc_private))]
    #![cfg_attr(rustbuild, unstable(feature = "rustc_private", issue = "27812"))]

This'll mean that by default they're not using these attributes but when
compiled as part of the compiler they do a few things:

* Mark themselves as entirely unstable via the `staged_api` feature and the
  `#![unstable]` attribute.
* Allow usage of other unstable crates via `feature(rustc_private)` which is
  required if the crate relies on any other crates to compile (other than std).
2017-03-23 11:28:00 -07:00
..
Cargo.toml Remove internal liblog 2017-03-23 11:28:00 -07:00
csv_dumper.rs Change json dumper (and a few other bits and pieces) to use rls-data rather than its own data structures 2017-03-15 21:21:20 +13:00
data.rs Use out-of-tree rustc serialize 2017-03-15 21:21:20 +13:00
dump.rs Change json dumper (and a few other bits and pieces) to use rls-data rather than its own data structures 2017-03-15 21:21:20 +13:00
dump_visitor.rs Add rls-span to do some conversions into rls-data. 2017-03-15 21:21:20 +13:00
external_data.rs Rollup merge of #40554 - nrc:rls-data, r=alexcrichton 2017-03-19 20:51:10 -04:00
json_api_dumper.rs Move the API json dumper to use rls-data too 2017-03-15 21:21:20 +13:00
json_dumper.rs Move the API json dumper to use rls-data too 2017-03-15 21:21:20 +13:00
lib.rs Rollup merge of #40554 - nrc:rls-data, r=alexcrichton 2017-03-19 20:51:10 -04:00
span_utils.rs Integrate TokenStream. 2017-03-03 02:15:37 +00:00