Skip to content
This repository was archived by the owner on Dec 1, 2023. It is now read-only.

Commit faeac0c

Browse files
committed
Bump to 0.3.0
1 parent 93087ac commit faeac0c

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "rustc-serialize"
4-
version = "0.2.15"
4+
version = "0.3.0"
55
authors = ["The Rust Project Developers"]
66
license = "MIT/Apache-2.0"
77
readme = "README.md"

src/json.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3364,7 +3364,6 @@ mod tests {
33643364
#[test]
33653365
fn test_encode_hashmap_with_numeric_key() {
33663366
use std::str::from_utf8;
3367-
// use std::io::Write;
33683367
use std::collections::HashMap;
33693368
let mut hm: HashMap<usize, bool> = HashMap::new();
33703369
hm.insert(1, true);
@@ -3380,7 +3379,6 @@ mod tests {
33803379
#[test]
33813380
fn test_prettyencode_hashmap_with_numeric_key() {
33823381
use std::str::from_utf8;
3383-
// use std::io::Write;
33843382
use std::collections::HashMap;
33853383
let mut hm: HashMap<usize, bool> = HashMap::new();
33863384
hm.insert(1, true);

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
//! Support code for encoding and decoding types.
1212
13-
#![feature(core, collections, unicode, old_io, io, std_misc, old_path, path, os)]
13+
#![feature(core, collections, unicode, io, std_misc, old_path, path, os)]
1414
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
1515
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
1616
html_root_url = "http://doc.rust-lang.org/rustc-serialize/")]

0 commit comments

Comments
 (0)