Skip to content

Commit c9d0caa

Browse files
authored
Merge pull request #85 from michaelwoerister/require-building-on-nightly-and-beta
Make sure all crates compile on nightly and beta.
2 parents 9f20bad + 8715fd0 commit c9d0caa

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
language: rust
22
rust:
33
- stable
4+
- beta
5+
- nightly

measureme/src/serialization.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ impl SerializationSink for ByteVecSink {
6060
}
6161

6262
impl std::fmt::Debug for ByteVecSink {
63-
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
63+
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
6464
write!(f, "ByteVecSink")
6565
}
6666
}

0 commit comments

Comments
 (0)