Skip to content

Commit

Permalink
Release hyper-zipkin 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Mar 7, 2018
1 parent 67d67cb commit 45b0c64
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions hyper-zipkin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hyper-zipkin"
version = "0.2.1"
version = "0.3.0"
authors = ["Steven Fackler <sfackler@palantir.com>"]
license = "Apache-2.0"
description = "Hyper header definitions for standard Zipkin headers"
Expand All @@ -12,4 +12,4 @@ keywords = ["zipkin", "tracing"]
[dependencies]
hyper = { version = "0.11", default-features = false }

zipkin = { version = "0.1.0", path = "../zipkin" }
zipkin = { version = "0.2.0", path = "../zipkin" }
6 changes: 3 additions & 3 deletions hyper-zipkin/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@
// limitations under the License.

//! Hyper definitions for Zipkin headers.
#![doc(html_root_url="https://docs.rs/hyper-zipkin/0.2")]
#![doc(html_root_url = "https://docs.rs/hyper-zipkin/0.3")]
#![warn(missing_docs)]
extern crate zipkin;

#[macro_use]
extern crate hyper;

use hyper::header::{Header, Headers, Raw, Formatter};
use hyper::header::{Formatter, Header, Headers, Raw};
use std::fmt;
use std::ops::{Deref, DerefMut};
use zipkin::{TraceId, SpanId, TraceContext};
use zipkin::{SpanId, TraceContext, TraceId};

header! {
/// The `X-B3-TraceId` header.
Expand Down

0 comments on commit 45b0c64

Please sign in to comment.