rusty_v8/Cargo.lock

219 lines
5.5 KiB
Plaintext
Raw Normal View History

2019-10-07 23:56:41 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2019-12-04 07:03:17 +00:00
[[package]]
name = "bitflags"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 18:18:01 +00:00
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
2019-12-04 07:03:17 +00:00
[[package]]
name = "fslock"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b14c83e47c73f7d62d907ae24a1a98e9132df3c33eb6c54fcf4bce0dbc41d5af"
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "glob"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 18:18:01 +00:00
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
[[package]]
name = "itoa"
2020-06-19 18:13:37 +00:00
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 18:18:01 +00:00
checksum = "dc6f3ad7b9d11a0c00842ff8de1b60ee58661048eb8049ed33c73594f359d7e6"
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 18:18:01 +00:00
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2019-10-31 16:03:44 +00:00
[[package]]
name = "libc"
2020-11-19 17:38:58 +00:00
version = "0.2.80"
2019-10-31 16:03:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 17:38:58 +00:00
checksum = "4d58d1b70b004888f764dfbf6a26a3b0342a1632d33968e4a179d8011c760614"
2019-10-31 16:03:44 +00:00
[[package]]
name = "proc-macro2"
version = "1.0.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
dependencies = [
2020-09-07 18:18:01 +00:00
"unicode-xid",
]
[[package]]
name = "quote"
2020-06-19 18:13:37 +00:00
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 18:18:01 +00:00
checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37"
dependencies = [
2020-09-07 18:18:01 +00:00
"proc-macro2",
]
2019-10-07 23:56:41 +00:00
[[package]]
2019-11-01 01:01:29 +00:00
name = "rusty_v8"
2021-02-10 22:35:25 +00:00
version = "0.18.2"
2019-10-15 20:10:52 +00:00
dependencies = [
2020-09-07 18:18:01 +00:00
"bitflags",
"fslock",
2020-09-07 18:18:01 +00:00
"lazy_static",
"libc",
"trybuild",
"which",
2019-10-31 16:03:44 +00:00
]
[[package]]
name = "ryu"
2020-06-04 12:09:12 +00:00
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 18:18:01 +00:00
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
[[package]]
name = "serde"
version = "1.0.117"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b88fa983de7720629c9387e9f517353ed404164b1e482c970a90c1a4aaf7dc1a"
dependencies = [
2020-09-07 18:18:01 +00:00
"serde_derive",
]
[[package]]
name = "serde_derive"
version = "1.0.117"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cbd1ae72adb44aab48f325a02444a5fc079349a8d804c1fc922aed3f7454c74e"
dependencies = [
2020-09-07 18:18:01 +00:00
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
version = "1.0.59"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcac07dbffa1c65e7f816ab9eba78eb142c6d44410f4eeba1e26e4f5dfa56b95"
dependencies = [
2020-09-07 18:18:01 +00:00
"itoa",
"ryu",
"serde",
]
[[package]]
name = "syn"
version = "1.0.50"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "443b4178719c5a851e1bde36ce12da21d74a0e60b4d982ec3385a933c812f0f6"
dependencies = [
2020-09-07 18:18:01 +00:00
"proc-macro2",
"quote",
"unicode-xid",
]
[[package]]
name = "termcolor"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
dependencies = [
2020-09-07 18:18:01 +00:00
"winapi-util",
]
2020-06-04 12:09:12 +00:00
[[package]]
name = "thiserror"
version = "1.0.22"
2020-06-04 12:09:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e9ae34b84616eedaaf1e9dd6026dbe00dcafa92aa0c8077cb69df1fcfe5e53e"
2020-06-04 12:09:12 +00:00
dependencies = [
2020-09-07 18:18:01 +00:00
"thiserror-impl",
2020-06-04 12:09:12 +00:00
]
[[package]]
name = "thiserror-impl"
version = "1.0.22"
2020-06-04 12:09:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ba20f23e85b10754cd195504aebf6a27e2e6cbe28c17778a0c930724628dd56"
2020-06-04 12:09:12 +00:00
dependencies = [
2020-09-07 18:18:01 +00:00
"proc-macro2",
"quote",
"syn",
2020-06-04 12:09:12 +00:00
]
[[package]]
name = "toml"
version = "0.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75cf45bb0bef80604d001caaec0d09da99611b3c0fd39d3080468875cdb65645"
dependencies = [
2020-09-07 18:18:01 +00:00
"serde",
]
[[package]]
name = "trybuild"
2020-11-19 17:38:58 +00:00
version = "1.0.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 17:38:58 +00:00
checksum = "b7d30fe369fd650072b352b1a9cb9587669de6b89be3b8225544012c1c45292d"
dependencies = [
2020-09-07 18:18:01 +00:00
"glob",
"lazy_static",
"serde",
"serde_json",
"termcolor",
"toml",
]
[[package]]
name = "unicode-xid"
2020-06-26 15:26:37 +00:00
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 18:18:01 +00:00
checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
2019-10-31 16:03:44 +00:00
[[package]]
name = "which"
2020-08-05 18:36:51 +00:00
version = "4.0.2"
2019-10-31 16:03:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 18:18:01 +00:00
checksum = "87c14ef7e1b8b8ecfc75d5eca37949410046e66f15d185c01d70824f1f8111ef"
2019-10-31 16:03:44 +00:00
dependencies = [
2020-09-07 18:18:01 +00:00
"libc",
"thiserror",
2019-10-15 20:10:52 +00:00
]
2019-10-07 23:56:41 +00:00
[[package]]
name = "winapi"
2020-06-26 15:26:37 +00:00
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 18:18:01 +00:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
2020-09-07 18:18:01 +00:00
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 18:18:01 +00:00
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
2020-04-22 17:21:17 +00:00
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 18:18:01 +00:00
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
2020-09-07 18:18:01 +00:00
"winapi",
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 18:18:01 +00:00
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"