Override yanked net2 0.2.37

This commit is contained in:
Trent Nelson
2020-12-11 15:14:36 -07:00
committed by mergify[bot]
parent 1e5a662706
commit 8fdfb291a9
6 changed files with 12 additions and 4 deletions

7
Cargo.lock generated
View File

@ -2261,9 +2261,9 @@ dependencies = [
[[package]]
name = "net2"
version = "0.2.34"
version = "0.2.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ba7c918ac76704fb42afcbbb43891e72731f3dcca3bef2a19786297baf14af7"
checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae"
dependencies = [
"cfg-if 0.1.10",
"libc",
@ -3909,6 +3909,7 @@ dependencies = [
"jsonrpc-core",
"jsonrpc-http-server",
"log 0.4.8",
"net2",
"rayon",
"reqwest",
"semver 0.11.0",
@ -3968,6 +3969,7 @@ dependencies = [
"log 0.4.8",
"lru",
"matches",
"net2",
"num-traits",
"num_cpus",
"rand 0.7.3",
@ -5119,6 +5121,7 @@ dependencies = [
"jsonrpc-derive",
"jsonrpc-http-server",
"log 0.4.8",
"net2",
"serde_json",
"solana-clap-utils",
"solana-metrics",

View File

@ -16,6 +16,7 @@ clap = "2.33.0"
indicatif = "0.15.0"
jsonrpc-core = "15.0.0"
log = "0.4.8"
net2 = "0.2.37"
rayon = "1.4.0"
reqwest = { version = "0.10.8", default-features = false, features = ["blocking", "rustls-tls", "json"] }
semver = "0.11.0"

View File

@ -36,6 +36,7 @@ jsonrpc-pubsub = "15.0.0"
jsonrpc-ws-server = "15.0.0"
log = "0.4.8"
lru = "0.6.0"
net2 = "0.2.37"
num_cpus = "1.13.0"
num-traits = "0.2"
rand = "0.7.0"

View File

@ -1172,9 +1172,9 @@ dependencies = [
[[package]]
name = "net2"
version = "0.2.34"
version = "0.2.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ba7c918ac76704fb42afcbbb43891e72731f3dcca3bef2a19786297baf14af7"
checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae"
dependencies = [
"cfg-if",
"libc",
@ -1856,6 +1856,7 @@ dependencies = [
"bincode",
"byteorder 1.3.4",
"elf",
"net2",
"solana-bpf-loader-program",
"solana-logger",
"solana-measure",

View File

@ -22,6 +22,7 @@ walkdir = "2"
bincode = "1.1.4"
byteorder = "1.3.2"
elf = "0.0.10"
net2 = "0.2.37"
solana-bpf-loader-program = { path = "../bpf_loader", version = "1.4.16" }
solana-logger = { path = "../../logger", version = "1.4.16" }
solana-measure = { path = "../../measure", version = "1.4.16" }

View File

@ -14,6 +14,7 @@ jsonrpc-core = "15.0.0"
jsonrpc-derive = "15.0.0"
jsonrpc-http-server = "15.0.0"
log = "0.4.8"
net2 = "0.2.37"
serde_json = "1.0.56"
solana-clap-utils = { path = "../clap-utils", version = "1.4.16" }
solana-metrics = { path = "../metrics", version = "1.4.16" }