-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Travis CI: For Rust 1.32.0, only do a compilation check
Since our `dev-dependencies` now require a newer Rust version, no longer do a full test for Rust 1.32.0. It seems the `time` crate is especially aggressive in its MSRV bumping; the `dev-dependencies` should be investigated to see if they can be trimmed to lower the MSRV for running the test suite.
- Loading branch information
Showing
5 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ | |
*.a | ||
/target/ | ||
Cargo.lock | ||
/msrv-test/target/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[package] | ||
name = "msrv-test" | ||
version = "0.0.1" | ||
authors = ["Andreas Rottmann <a.rottmann@gmx.at>"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
zmq = { path = ".." } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
fn main() { | ||
let ctx = zmq::Context::new(); | ||
|
||
let socket = ctx.socket(zmq::REQ).unwrap(); | ||
socket.connect("tcp://127.0.0.1:1234").unwrap(); | ||
socket.send("hello world!", 0).unwrap(); | ||
} |