removes protobuf dependency (brought by prometheus default features)

This commit is contained in:
Dmitry Rodionov
2021-09-10 13:35:35 +03:00
committed by Dmitry
parent 6afd99c73f
commit 9043f45489
2 changed files with 1 additions and 8 deletions

7
Cargo.lock generated
View File

@@ -1395,16 +1395,9 @@ dependencies = [
"lazy_static",
"memchr",
"parking_lot",
"protobuf",
"thiserror",
]
[[package]]
name = "protobuf"
version = "2.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db50e77ae196458ccd3dc58a31ea1a90b0698ab1b7928d89f644c25d72070267"
[[package]]
name = "proxy"
version = "0.1.0"

View File

@@ -4,6 +4,6 @@ version = "0.1.0"
edition = "2018"
[dependencies]
prometheus = "0.12"
prometheus = {version = "0.12", default_features=false} # removes protobuf dependency
libc = "0.2"
lazy_static = "1.4"