fixes rustc 1.11 compies, #66

This commit is contained in:
Benjamin Fry 2016-11-03 19:30:58 -07:00
parent 764255a8e2
commit 061938e401
4 changed files with 8 additions and 3 deletions

View File

@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## 0.8.1
### Fixed
- Fix build on rustc 1.11, #66
## 0.8.0
### Added
- SecureClientHandle, for future based DNSSec validation.

2
Cargo.lock generated
View File

@ -1,6 +1,6 @@
[root]
name = "trust-dns"
version = "0.7.3"
version = "0.8.1"
dependencies = [
"backtrace 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
"chrono 0.2.25 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,6 +1,6 @@
[package]
name = "trust-dns"
version = "0.8.0"
version = "0.8.1"
authors = ["Benjamin Fry <benjaminfry@me.com>"]
# A short blurb about the package. This is not rendered in any format when

View File

@ -28,7 +28,8 @@ use ::op::{Message, MessageType, OpCode, Query, UpdateMessage};
const QOS_MAX_RECEIVE_MSGS: usize = 100; // max number of messages to receive from the UDP socket
type StreamHandle = Sender<Vec<u8>>;
/// A reference to a Sender of bytes returned from the creation of a UdpClientStream or TcpClientStream
pub type StreamHandle = Sender<Vec<u8>>;
/// A DNS Client implemented over futures-rs.
///