Skip to content

Commit

Permalink
bump metrics lib to 0.13 (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
drunkirishcoder authored Nov 17, 2020
1 parent 995e5d9 commit 6c7083c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ failure = "0.1"
futures-preview = "=0.3.0-alpha.19"
libc = "0.2"
metrics-core = { version = "0.5", optional = true }
metrics-runtime = { version = "0.12", optional = true, default-features = false }
metrics-runtime = { version = "0.13", optional = true, default-features = false }
once_cell = "1.2"
proptest = { version = "0.10", optional = true }
regex = "1"
Expand Down
2 changes: 1 addition & 1 deletion examples/kni/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ doctest = false
capsule = { version = "0.1", path = "../../core" }
failure = "0.1"
metrics-core = "0.5"
metrics-runtime = "0.12"
metrics-observer-yaml = "0.1"
tracing = "0.1"
tracing-subscriber = "0.2"
2 changes: 1 addition & 1 deletion examples/kni/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use capsule::metrics;
use capsule::{batch, Runtime};
use failure::Fallible;
use metrics_core::{Builder, Drain, Observe};
use metrics_runtime::observers::YamlBuilder;
use metrics_observer_yaml::YamlBuilder;
use std::time::Duration;
use tracing::{debug, Level};
use tracing_subscriber::fmt;
Expand Down
2 changes: 1 addition & 1 deletion examples/syn-flood/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ doctest = false
capsule = { version = "0.1", path = "../../core" }
failure = "0.1"
metrics-core = "0.5"
metrics-runtime = "0.12"
metrics-observer-yaml = "0.1"
tracing = "0.1"
tracing-subscriber = "0.2"
2 changes: 1 addition & 1 deletion examples/syn-flood/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use capsule::packets::{Ethernet, Packet, Tcp};
use capsule::{batch, Mbuf, PortQueue, Runtime};
use failure::Fallible;
use metrics_core::{Builder, Drain, Observe};
use metrics_runtime::observers::YamlBuilder;
use metrics_observer_yaml::YamlBuilder;
use std::collections::HashMap;
use std::net::Ipv4Addr;
use std::time::Duration;
Expand Down

0 comments on commit 6c7083c

Please sign in to comment.