Fix breakage on most recent nightly.

This commit is contained in:
Tim Kuehn
2018-04-08 21:50:15 -07:00
parent 4b763e9f52
commit 4b5273127d
7 changed files with 10 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "tarpc"
version = "0.10.0"
version = "0.11.0"
authors = ["Adam Wright <adam.austin.wright@gmail.com>", "Tim Kuehn <timothy.j.kuehn@gmail.com>"]
license = "MIT"
documentation = "https://docs.rs/tarpc"

View File

@@ -37,7 +37,7 @@ arguments to tarpc fns.
Add to your `Cargo.toml` dependencies:
```toml
tarpc = "0.10.0"
tarpc = "0.11.0"
tarpc-plugins = "0.2.0"
```

View File

@@ -1,3 +1,8 @@
## 0.10.0 (2018-04-08)
## Breaking Changes
Fixed rustc breakage in tarpc-plugins. These changes require a recent version of rustc.
## 0.10.0 (2018-03-26)
## Breaking Changes

View File

@@ -3,7 +3,7 @@
// Licensed under the MIT License, <LICENSE or http://opensource.org/licenses/MIT>.
// This file may not be copied, modified, or distributed except according to those terms.
#![feature(conservative_impl_trait, plugin, never_type, use_extern_macros)]
#![feature(plugin, never_type, use_extern_macros)]
#![plugin(tarpc_plugins)]
extern crate chrono;

View File

@@ -1,2 +1 @@
ideal_width = 100
reorder_imports = true

View File

@@ -634,7 +634,7 @@ mod functional_test {
let buf = include_bytes!("../test/root-ca.der");
let cert = unwrap!(Certificate::from_der(buf));
let mut connector = unwrap!(TlsConnector::builder());
connector.add_root_certificate(cert);
connector.add_root_certificate(cert).unwrap();
Context {
domain: DOMAIN.into(),

View File

@@ -126,7 +126,7 @@ fn ty_snake_to_camel(cx: &mut ExtCtxt, sp: Span, tts: &[TokenTree]) -> Box<MacRe
convert(&mut path.segments
.last_mut()
.unwrap()
.identifier);
.ident);
MacEager::ty(P(Ty {
id: ast::DUMMY_NODE_ID,
node: TyKind::Path(None, path),