diff --git a/Cargo.lock b/Cargo.lock index 0a4523a..0d3b176 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3062,10 +3062,8 @@ dependencies = [ "jsonrpc-core 18.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "jsonrpc-core-client", "log 0.4.17", - "native-tls", "rand 0.7.3", "rustls", - "rustls-pemfile 1.0.2", "serde", "serde_derive", "serde_json", @@ -3074,7 +3072,6 @@ dependencies = [ "solana-rpc", "solana-sdk", "tokio", - "tokio-stream", "tonic", "warp", "yellowstone-grpc-proto", @@ -3110,8 +3107,6 @@ dependencies = [ "postgres-types", "postgres_query", "rand 0.7.3", - "rustls", - "rustls-pemfile 1.0.2", "serde", "serde_derive", "serde_json", @@ -3123,7 +3118,6 @@ dependencies = [ "tokio", "tokio-postgres", "tokio-postgres-rustls", - "tokio-stream", "tonic-build 0.6.2", ] diff --git a/connector/Cargo.toml b/connector/Cargo.toml index 8cbe199..9601c4a 100644 --- a/connector/Cargo.toml +++ b/connector/Cargo.toml @@ -20,16 +20,13 @@ arrayref = "*" bytemuck = "*" tokio = { version = "1", features = ["full"] } -tokio-stream = "0.1" -native-tls = "0.2" rustls = "0.20.8" -rustls-pemfile = "1.0.2" serde = "1.0.130" serde_derive = "1.0.130" serde_json = "1.0.68" -tonic = { version = "0.8" } +tonic = "0.8" bs58 = "*" base64 = "*" diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 93e853c..b3652cc 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -24,14 +24,11 @@ bytemuck = "*" fixed = { version = "*", features = ["serde"] } tokio = { version = "1", features = ["full"] } -tokio-stream = "0.1" tokio-postgres = { version = "0.7", features = ["with-chrono-0_4"] } tokio-postgres-rustls = "0.9.0" postgres-types = { version = "0.2", features = ["array-impls", "derive", "with-chrono-0_4"] } postgres-native-tls = "0.5" native-tls = "0.2" -rustls = "0.20.8" -rustls-pemfile = "1.0.2" # postgres_query hasn't updated its crate in a while postgres_query = { git = "https://github.com/nolanderc/rust-postgres-query", rev = "b4422051c8a31fbba4a35f88004c1cefb1878dd5" }