Skip to content

Commit c01c6bf

Browse files
committed
Add Debug to things
1 parent e8ac752 commit c01c6bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/tests/version.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ fn publish_build_info() {
165165
)
166166
);
167167

168-
#[derive(RustcDecodable)]
168+
#[derive(Debug, RustcDecodable)]
169169
struct R {
170170
build_info: EncodableBuildInfo,
171171
}

src/version.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ pub const BUILD_INFO_FIELDS: (build_info::version_id,
105105
build_info::passed,
106106
);
107107

108-
#[derive(RustcEncodable, RustcDecodable, Default)]
108+
#[derive(Debug, RustcEncodable, RustcDecodable, Default)]
109109
pub struct EncodableBuildInfo {
110110
id: i32,
111111
pub ordering: HashMap<String, Vec<String>>,

0 commit comments

Comments
 (0)