diff --git a/apps/indexer-proxy/proxy/Cargo.toml b/apps/indexer-proxy/proxy/Cargo.toml index d0ff3b42..a4053008 100644 --- a/apps/indexer-proxy/proxy/Cargo.toml +++ b/apps/indexer-proxy/proxy/Cargo.toml @@ -4,8 +4,6 @@ version = "2.5.1-beta.2" edition = "2021" [dependencies] -subql-indexer-utils = { version = "2", path = "../utils" } -subql-contracts = { git = "https://github.com/subquery/network-contracts", tag = "v1.3.0" } aes-gcm = "0.10" axum = { version = "0.7", features = ["ws"] } axum-auth = "0.7" @@ -16,26 +14,28 @@ chamomile_types = "0.10" chrono = "0.4" digest = '0.10' ethers = { git = "https://github.com/gakonst/ethers-rs.git", tag = "ethers-v2.0.7" } +futures-util = "0.3.30" hex = "0.4" jsonwebtoken = "9.1" +once_cell = "1.12" +prometheus-client = "0.22" redis = { version = "0.27", features = ["tokio-comp"] } reqwest = { version = "0.12", features = ["json", "blocking"] } reqwest-streams = { version = "0.8", features = ["json"] } -once_cell = "1.12" -prometheus-client = "0.22" -sha2 = '0.10' serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -serde_with={ version = "3.0", features = ["json"] } +serde_with ={ version = "3.0", features = ["json"] } +sha2 = '0.10' structopt = "0.3" +subql-contracts = { git = "https://github.com/subquery/network-contracts", tag = "v1.4.0" } +subql-indexer-utils = { version = "2", path = "../utils" } sysinfo = "0.31" tdn = { version = "0.10", default-features = false, features = ["multiple"] } -tracing = "0.1" -tracing-subscriber = { version = "0.3", features = ["env-filter"] } tokenizers = "0.20" tokio = { version = "1", features = ["full"] } -tower-http = { version = "0.5", features = ["cors"] } tokio-stream = { version = "0.1" } tokio-tungstenite = { version = "0.24.0", features = ["native-tls"] } -futures-util= "0.3.30" +tower-http = { version = "0.5", features = ["cors"] } +tracing = "0.1" +tracing-subscriber = { version = "0.3", features = ["env-filter"] } url = "2.2" diff --git a/apps/indexer-proxy/utils/Cargo.toml b/apps/indexer-proxy/utils/Cargo.toml index 3a0df0c9..d51b4c03 100644 --- a/apps/indexer-proxy/utils/Cargo.toml +++ b/apps/indexer-proxy/utils/Cargo.toml @@ -4,21 +4,21 @@ version = "2.1.0" edition = "2021" [dependencies] -subql-contracts = { git = "https://github.com/subquery/network-contracts", tag = "v1.3.0" } axum = "0.7" +base64 = "0.22" bincode = "1.3" -blake3="1.3" +blake3 = "1.3" bs58 = "0.5" -base64 = "0.22" +ethereum-types = "0.15" +ethers = { git = "https://github.com/gakonst/ethers-rs.git", tag = "ethers-v2.0.7" } hex = "0.4" +http = "1.1.0" +once_cell = "1.12" rand_chacha = "0.3" reqwest = { version = "0.12", features = ["json"] } rustc-hex = "2.1" -once_cell = "1.12" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -serde_with={ version = "3.0", features = ["json"] } +serde_with ={ version = "3.0", features = ["json"] } +subql-contracts = { git = "https://github.com/subquery/network-contracts", tag = "v1.4.0" } uint = "0.10" -ethers = { git = "https://github.com/gakonst/ethers-rs.git", tag = "ethers-v2.0.7" } -ethereum-types = "0.15" -http = "1.1.0"