-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3016 from wangdayong228/metrics-for-async-rpcs
Metrics for async rpcs
- Loading branch information
Showing
13 changed files
with
1,094 additions
and
153 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
[package] | ||
name = "cfx-rpc-middlewares" | ||
edition = "2021" | ||
version.workspace = true | ||
authors.workspace = true | ||
description.workspace = true | ||
documentation.workspace = true | ||
homepage.workspace = true | ||
keywords.workspace = true | ||
repository.workspace = true | ||
license-file.workspace = true | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
jsonrpc-core = { workspace = true } | ||
jsonrpsee = { workspace = true ,features = ["server","ws-client"]} | ||
rustls = { workspace = true, features = ["dangerous_configuration"] } | ||
throttling = { workspace = true } | ||
futures-util = { workspace = true } | ||
log = { workspace = true } | ||
jsonrpsee-types = { workspace = true } | ||
cfx-rpc-utils = { workspace = true } | ||
cfx-util-macros = { workspace = true } | ||
lazy_static = { workspace = true } | ||
parking_lot = { workspace = true } | ||
metrics = { workspace = true } | ||
futures = { workspace = true } | ||
tracing-subscriber = {version = "=0.3.0",features = ["env-filter"]} | ||
anyhow = {workspace = true} | ||
tokio = { workspace = true } |
Oops, something went wrong.