about summary refs log tree commit diff
path: root/src/libserialize/tests/json.rs
AgeCommit message (Collapse)AuthorLines
2020-06-02Rename directories for some compiler crates from `libx` to `librustc_x`Vadim Petrochenkov-1270/+0
libarena -> librustc_arena libfmt_macros -> librustc_parse_format libgraphviz -> librustc_graphviz libserialize -> librustc_serialize
2020-04-05Stop importing int/float modules in libserializeLinus Färnstrand-1/+0
2019-12-22Format the worldMark Rousskov-337/+324
2019-09-23Tweak libserialize allowsAlex Crichton-1/+1
2019-09-23Fix compiling libserialize testsAlex Crichton-0/+2
They've got new warnings turned on so they need more `#![allow]`
2019-07-23cleanup: Remove `extern crate serialize as rustc_serialize`sVadim Petrochenkov-1/+0
2019-04-21Allow unused_extern_crates for rustc_libserializePhilipp Hansch-0/+1
2019-02-09Move some tests into the tests directoryTaiki Endo-0/+1282
This moves tests in opaque.rs and tests other than tests that require private items in json.rs into tests/opaque.rs and tests/json.rs.