Remove unneeded dependencies

This commit is contained in:
Christian Kamm 2023-03-21 12:06:42 +01:00
parent 7dc07c8709
commit d2590c9174
3 changed files with 1 additions and 13 deletions

6
Cargo.lock generated
View File

@ -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",
]

View File

@ -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 = "*"

View File

@ -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" }