diff options
| author | MatthieuCoder <matthieu@matthieu-dev.xyz> | 2023-01-15 17:03:29 +0400 | 
|---|---|---|
| committer | MatthieuCoder <matthieu@matthieu-dev.xyz> | 2023-01-15 17:03:29 +0400 | 
| commit | cbcaa3c01ec4d9ed95dc5af8232de1d10191bc44 (patch) | |
| tree | 02cd56bb6eba762024c33f2df3cbec4f7a1a27e1 /Cargo.lock | |
| parent | c06cf52e887cc560f1fd4fa72713b239fe0102a6 (diff) | |
add metrics and jemalloc
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 39 | 
1 files changed, 36 insertions, 3 deletions
@@ -86,9 +86,9 @@ checksum = "983cd8b9d4b02a6dc6ffa557262eb5858a27a0038ffffe21a0f133eaa819a164"  [[package]]  name = "async-nats" -version = "0.25.1" +version = "0.26.0"  source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f69bf051b7d96b3275cdea9a4abbe2e937ce6de66c742c57050c5c98b4a6db32" +checksum = "0b0e90b3cd41350d89a242b981fb888f0eb8e3cb81c0fcb4563338f7e96a1084"  dependencies = [   "base64",   "base64-url", @@ -771,6 +771,12 @@ dependencies = [  ]  [[package]] +name = "fs_extra" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2022715d62ab30faffd124d40b76f4134a550a87792276512b18d63272333394" + +[[package]]  name = "futures"  version = "0.3.25"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -873,6 +879,7 @@ dependencies = [   "serde",   "serde_json",   "shared", + "tikv-jemallocator",   "tokio",   "tokio-stream",   "tracing", @@ -1930,7 +1937,7 @@ version = "0.1.0"  dependencies = [   "anyhow",   "criterion", - "env_logger 0.7.1", + "env_logger 0.10.0",   "hyper",   "leash",   "opentelemetry", @@ -1940,6 +1947,7 @@ dependencies = [   "serde",   "shared",   "test-log", + "tikv-jemallocator",   "tokio",   "tokio-stream",   "tokio-test", @@ -2059,6 +2067,7 @@ dependencies = [   "proto",   "serde",   "shared", + "tikv-jemallocator",   "tokio",   "tokio-stream",   "tonic", @@ -2354,6 +2363,8 @@ dependencies = [   "anyhow",   "async-nats",   "config", + "opentelemetry", + "opentelemetry-otlp",   "redis",   "serde",   "serde_json", @@ -2564,6 +2575,27 @@ dependencies = [  ]  [[package]] +name = "tikv-jemalloc-sys" +version = "0.5.2+5.3.0-patched" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec45c14da997d0925c7835883e4d5c181f196fa142f8c19d7643d1e9af2592c3" +dependencies = [ + "cc", + "fs_extra", + "libc", +] + +[[package]] +name = "tikv-jemallocator" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20612db8a13a6c06d57ec83953694185a367e16945f66565e8028d2c0bd76979" +dependencies = [ + "libc", + "tikv-jemalloc-sys", +] + +[[package]]  name = "time"  version = "0.3.17"  source = "registry+https://github.com/rust-lang/crates.io-index" @@ -3264,6 +3296,7 @@ dependencies = [   "serde",   "serde_json",   "shared", + "tikv-jemallocator",   "tokio",   "tracing",   "twilight-model",  | 
