336 lines
9.0 KiB
Plaintext
336 lines
9.0 KiB
Plaintext
|
# This file is automatically @generated by Cargo.
|
||
|
# It is not intended for manual editing.
|
||
|
version = 3
|
||
|
|
||
|
[[package]]
|
||
|
name = "abao"
|
||
|
version = "0.2.0"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "2daa0989489b05a455a9707adbbbc17443edf7bbc902ce499cd3b84148d68a40"
|
||
|
dependencies = [
|
||
|
"arrayref",
|
||
|
"arrayvec",
|
||
|
"blake3",
|
||
|
"futures",
|
||
|
"tokio",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "arrayref"
|
||
|
version = "0.3.7"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545"
|
||
|
|
||
|
[[package]]
|
||
|
name = "arrayvec"
|
||
|
version = "0.7.2"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
|
||
|
|
||
|
[[package]]
|
||
|
name = "autocfg"
|
||
|
version = "1.1.0"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
||
|
|
||
|
[[package]]
|
||
|
name = "bao"
|
||
|
version = "0.1.0"
|
||
|
dependencies = [
|
||
|
"abao",
|
||
|
"wasmedge-bindgen",
|
||
|
"wasmedge-bindgen-macro",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "blake3"
|
||
|
version = "1.3.3"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "42ae2468a89544a466886840aa467a25b766499f4f04bf7d9fcd10ecee9fccef"
|
||
|
dependencies = [
|
||
|
"arrayref",
|
||
|
"arrayvec",
|
||
|
"cc",
|
||
|
"cfg-if",
|
||
|
"constant_time_eq",
|
||
|
"digest",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "block-buffer"
|
||
|
version = "0.10.4"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
||
|
dependencies = [
|
||
|
"generic-array",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "cc"
|
||
|
version = "1.0.79"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
|
||
|
|
||
|
[[package]]
|
||
|
name = "cfg-if"
|
||
|
version = "1.0.0"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
||
|
|
||
|
[[package]]
|
||
|
name = "constant_time_eq"
|
||
|
version = "0.2.5"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "13418e745008f7349ec7e449155f419a61b92b58a99cc3616942b926825ec76b"
|
||
|
|
||
|
[[package]]
|
||
|
name = "crypto-common"
|
||
|
version = "0.1.6"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
||
|
dependencies = [
|
||
|
"generic-array",
|
||
|
"typenum",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "digest"
|
||
|
version = "0.10.6"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
|
||
|
dependencies = [
|
||
|
"block-buffer",
|
||
|
"crypto-common",
|
||
|
"subtle",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "futures"
|
||
|
version = "0.3.28"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
|
||
|
dependencies = [
|
||
|
"futures-channel",
|
||
|
"futures-core",
|
||
|
"futures-io",
|
||
|
"futures-sink",
|
||
|
"futures-task",
|
||
|
"futures-util",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "futures-channel"
|
||
|
version = "0.3.28"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
|
||
|
dependencies = [
|
||
|
"futures-core",
|
||
|
"futures-sink",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "futures-core"
|
||
|
version = "0.3.28"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
|
||
|
|
||
|
[[package]]
|
||
|
name = "futures-io"
|
||
|
version = "0.3.28"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
|
||
|
|
||
|
[[package]]
|
||
|
name = "futures-sink"
|
||
|
version = "0.3.28"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
|
||
|
|
||
|
[[package]]
|
||
|
name = "futures-task"
|
||
|
version = "0.3.28"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
|
||
|
|
||
|
[[package]]
|
||
|
name = "futures-util"
|
||
|
version = "0.3.28"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
|
||
|
dependencies = [
|
||
|
"futures-core",
|
||
|
"futures-sink",
|
||
|
"futures-task",
|
||
|
"pin-project-lite",
|
||
|
"pin-utils",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "generic-array"
|
||
|
version = "0.14.7"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
||
|
dependencies = [
|
||
|
"typenum",
|
||
|
"version_check",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "pin-project-lite"
|
||
|
version = "0.2.9"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
|
||
|
|
||
|
[[package]]
|
||
|
name = "pin-utils"
|
||
|
version = "0.1.0"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
||
|
|
||
|
[[package]]
|
||
|
name = "proc-macro2"
|
||
|
version = "1.0.56"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435"
|
||
|
dependencies = [
|
||
|
"unicode-ident",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "quote"
|
||
|
version = "1.0.26"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc"
|
||
|
dependencies = [
|
||
|
"proc-macro2",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "subtle"
|
||
|
version = "2.4.1"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
|
||
|
|
||
|
[[package]]
|
||
|
name = "syn"
|
||
|
version = "1.0.109"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
||
|
dependencies = [
|
||
|
"proc-macro2",
|
||
|
"quote",
|
||
|
"unicode-ident",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "tokio"
|
||
|
version = "1.28.0"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "c3c786bf8134e5a3a166db9b29ab8f48134739014a3eca7bc6bfa95d673b136f"
|
||
|
dependencies = [
|
||
|
"autocfg",
|
||
|
"pin-project-lite",
|
||
|
"windows-sys",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "typenum"
|
||
|
version = "1.16.0"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
|
||
|
|
||
|
[[package]]
|
||
|
name = "unicode-ident"
|
||
|
version = "1.0.8"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
|
||
|
|
||
|
[[package]]
|
||
|
name = "version_check"
|
||
|
version = "0.9.4"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
||
|
|
||
|
[[package]]
|
||
|
name = "wasmedge-bindgen"
|
||
|
version = "0.4.1"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "363e00c6f7c2fd162c36a97b3f352dd0ed690cde5c0d0a6d50524ef9c0fa7acd"
|
||
|
|
||
|
[[package]]
|
||
|
name = "wasmedge-bindgen-macro"
|
||
|
version = "0.4.1"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "a9fe812750bd02aac1b3b32f90f70442b58e802cb2b09454726619af359fdf33"
|
||
|
dependencies = [
|
||
|
"proc-macro2",
|
||
|
"quote",
|
||
|
"syn",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "windows-sys"
|
||
|
version = "0.48.0"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
||
|
dependencies = [
|
||
|
"windows-targets",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "windows-targets"
|
||
|
version = "0.48.0"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
|
||
|
dependencies = [
|
||
|
"windows_aarch64_gnullvm",
|
||
|
"windows_aarch64_msvc",
|
||
|
"windows_i686_gnu",
|
||
|
"windows_i686_msvc",
|
||
|
"windows_x86_64_gnu",
|
||
|
"windows_x86_64_gnullvm",
|
||
|
"windows_x86_64_msvc",
|
||
|
]
|
||
|
|
||
|
[[package]]
|
||
|
name = "windows_aarch64_gnullvm"
|
||
|
version = "0.48.0"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
|
||
|
|
||
|
[[package]]
|
||
|
name = "windows_aarch64_msvc"
|
||
|
version = "0.48.0"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
||
|
|
||
|
[[package]]
|
||
|
name = "windows_i686_gnu"
|
||
|
version = "0.48.0"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
|
||
|
|
||
|
[[package]]
|
||
|
name = "windows_i686_msvc"
|
||
|
version = "0.48.0"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
|
||
|
|
||
|
[[package]]
|
||
|
name = "windows_x86_64_gnu"
|
||
|
version = "0.48.0"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
|
||
|
|
||
|
[[package]]
|
||
|
name = "windows_x86_64_gnullvm"
|
||
|
version = "0.48.0"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
|
||
|
|
||
|
[[package]]
|
||
|
name = "windows_x86_64_msvc"
|
||
|
version = "0.48.0"
|
||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
|