Skip to content

Commit

Permalink
crates: update ownership
Browse files Browse the repository at this point in the history
  • Loading branch information
Fishrock123 committed Apr 15, 2021
1 parent 4484a67 commit 76ff1f0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 15 deletions.
5 changes: 2 additions & 3 deletions tracing-distributed/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
[package]
name = "eaze-tracing-distributed"
name = "tracing-distributed"
version = "0.2.0-eaze.7"
authors = [
"Inanna Malick <[email protected]>",
"Jeremiah Senkpiel <[email protected]>"
]
edition = "2018"
description = "Tracing layer for multiprocess telemetry"
documentation = "https://inanna-malick.github.io/honeycomb-tracing/tracing_distributed/"
repository = "https://github.com/inanna-malick/honeycomb-tracing"
repository = "https://github.com/eaze/honeycomb-tracing"
keywords = ["tracing", "instrumentation"]
license = "MIT"
readme = "README.md"
Expand Down
9 changes: 4 additions & 5 deletions tracing-honeycomb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
[package]
name = "eaze-tracing-honeycomb"
name = "tracing-honeycomb"
version = "0.2.1-eaze.7"
authors = [
"Inanna Malick <[email protected]>",
"Jeremiah Senkpiel <[email protected]>"
]
edition = "2018"
description = "Honeycomb.io tracing layer for multiprocess telemetry"
documentation = "https://inanna-malick.github.io/tracing-honeycomb/tracing_honeycomb/"
repository = "https://github.com/inanna-malick/tracing-honeycomb"
repository = "https://github.com/eaze/tracing-honeycomb"
keywords = ["tracing", "honeycomb", "instrumentation"]
license = "MIT"
readme = "README.md"

[features]
use_parking_lot = ["parking_lot", "eaze-tracing-distributed/use_parking_lot"]
use_parking_lot = ["parking_lot", "tracing-distributed/use_parking_lot"]

[dependencies]
tracing = "0.1.12"
tracing-core = "0.1.9"
eaze-tracing-distributed = { path = "../tracing-distributed", version = "0.2.0-eaze.7" }
tracing-distributed = { path = "../tracing-distributed", version = "0.2.0-eaze.7" }
libhoney-rust = "0.1.3"
rand = "0.7"
chrono = "0.4"
Expand Down
2 changes: 0 additions & 2 deletions tracing-honeycomb/examples/async_tracing.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
use eaze_tracing_honeycomb as tracing_honeycomb;

use std::{env, str::FromStr, time::Duration};
use tokio::process::Command;
use tokio::time::delay_for;
Expand Down
1 change: 0 additions & 1 deletion tracing-honeycomb/src/honeycomb.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use chrono::{DateTime, Utc};
use eaze_tracing_distributed as tracing_distributed;

use crate::visitor::{event_to_values, span_to_values, HoneycombVisitor};
use libhoney::FieldHolder;
Expand Down
2 changes: 0 additions & 2 deletions tracing-honeycomb/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
//!
//! As a tracing layer, `TelemetryLayer` can be composed with other layers to provide stdout logging, filtering, etc.
use eaze_tracing_distributed as tracing_distributed;

mod honeycomb;
mod span_id;
mod trace_id;
Expand Down
2 changes: 0 additions & 2 deletions tracing-honeycomb/src/visitor.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
use eaze_tracing_distributed as tracing_distributed;

use chrono::{DateTime, Utc};
use libhoney::{json, Value};
use std::collections::HashMap;
Expand Down

0 comments on commit 76ff1f0

Please sign in to comment.