about summary refs log tree commit diff
path: root/compiler/rustc_serialize/src/lib.rs
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2023-10-06 09:50:23 +1100
committerNicholas Nethercote <n.nethercote@gmail.com>2023-10-06 10:30:01 +1100
commit5f69ca62f2ceb9fab475c05e6df426fcc26cb77d (patch)
treebe27f3b8cc8f914ec963b0b8ff69b33bf92f00b4 /compiler/rustc_serialize/src/lib.rs
parentf703475b4eaef5c65a0891a9e27d3945aec4ced6 (diff)
downloadrust-5f69ca62f2ceb9fab475c05e6df426fcc26cb77d.tar.gz
rust-5f69ca62f2ceb9fab475c05e6df426fcc26cb77d.zip
rustc_serialize: merge `collection_impls.rs` into `serialize.rs`.
`serialize.rs` has the `Encodable`/`Decodable` impls for lots of basic
types, including `Vec`. `collection_impls` has it for lots of collection
types. The distinction isn't really meaningful, and it's simpler to have
them all in a single file.
Diffstat (limited to 'compiler/rustc_serialize/src/lib.rs')
-rw-r--r--compiler/rustc_serialize/src/lib.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_serialize/src/lib.rs b/compiler/rustc_serialize/src/lib.rs
index bd306eed85a..5360aa9ea6a 100644
--- a/compiler/rustc_serialize/src/lib.rs
+++ b/compiler/rustc_serialize/src/lib.rs
@@ -21,7 +21,6 @@
 
 pub use self::serialize::{Decodable, Decoder, Encodable, Encoder};
 
-mod collection_impls;
 mod serialize;
 
 pub mod leb128;