Skip to content
This repository has been archived by the owner on Aug 30, 2022. It is now read-only.

Commit

Permalink
rebase on feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert-Steiner committed Aug 5, 2020
1 parent 5f8480f commit 60c3407
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 0 additions & 2 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ tracing-subscriber = "0.2.7"
uuid = { version = "0.8.1", features = ["v4"]}
rayon = "1.3.0"
async-trait = "0.1.35"
influxdb = { version = "0.1.0", features = ["derive"] }
chrono = "0.4.13"

# optional dependencies
influxdb = { version = "0.1.0", features = ["derive"], optional = true }
Expand Down
4 changes: 3 additions & 1 deletion rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ pub mod crypto;
pub mod examples;
pub mod mask;
pub mod message;
pub mod metrics;
pub mod rest;
pub mod sdk;
pub mod services;
Expand All @@ -99,6 +98,9 @@ pub mod state_machine;
pub mod utils;
pub(crate) mod vendor;

#[cfg(feature = "metrics")]
pub mod metrics;

use std::collections::HashMap;

use derive_more::Display;
Expand Down

0 comments on commit 60c3407

Please sign in to comment.