upd Cargo.lock for bpf

This commit is contained in:
klykov 2022-03-10 21:31:30 +01:00 committed by kirill lykov
parent 36807d5fa3
commit 9859eb83b5
1 changed files with 44 additions and 7 deletions

View File

@ -440,12 +440,28 @@ dependencies = [
"ansi_term",
"atty",
"bitflags",
"strsim",
"textwrap",
"strsim 0.8.0",
"textwrap 0.11.0",
"unicode-width",
"vec_map",
]
[[package]]
name = "clap"
version = "3.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8c93436c21e4698bacadf42917db28b23017027a4deccb35dbe47a7e7840123"
dependencies = [
"atty",
"bitflags",
"indexmap",
"lazy_static",
"os_str_bytes",
"strsim 0.10.0",
"termcolor",
"textwrap 0.15.0",
]
[[package]]
name = "combine"
version = "3.8.1"
@ -1729,6 +1745,15 @@ dependencies = [
"thiserror",
]
[[package]]
name = "os_str_bytes"
version = "6.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64"
dependencies = [
"memchr",
]
[[package]]
name = "ouroboros"
version = "0.14.2"
@ -3047,7 +3072,7 @@ name = "solana-clap-utils"
version = "1.11.0"
dependencies = [
"chrono",
"clap",
"clap 2.34.0",
"rpassword",
"solana-perf",
"solana-remote-wallet",
@ -3077,7 +3102,7 @@ dependencies = [
"Inflector",
"base64 0.13.0",
"chrono",
"clap",
"clap 2.34.0",
"console",
"humantime",
"indicatif",
@ -3103,7 +3128,7 @@ dependencies = [
"bincode",
"bs58",
"bytes",
"clap",
"clap 2.34.0",
"crossbeam-channel",
"futures",
"futures-util",
@ -3165,7 +3190,7 @@ version = "1.11.0"
dependencies = [
"bincode",
"byteorder 1.4.3",
"clap",
"clap 2.34.0",
"crossbeam-channel",
"log",
"serde",
@ -3278,7 +3303,7 @@ name = "solana-net-utils"
version = "1.11.0"
dependencies = [
"bincode",
"clap",
"clap 3.1.6",
"crossbeam-channel",
"log",
"nix",
@ -3805,6 +3830,12 @@ version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "subtle"
version = "2.4.1"
@ -3939,6 +3970,12 @@ dependencies = [
"unicode-width",
]
[[package]]
name = "textwrap"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
[[package]]
name = "thiserror"
version = "1.0.30"