0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2024-11-24 15:19:31 -05:00
denoland-rusty-v8/Cargo.lock

215 lines
5.4 KiB
Text
Raw Normal View History

2019-10-07 19:56:41 -04:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2019-12-04 02:03:17 -05:00
[[package]]
name = "bitflags"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 14:18:01 -04:00
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
2019-12-04 02:03:17 -05:00
2019-10-31 12:03:44 -04:00
[[package]]
name = "cargo_gn"
2020-01-05 00:21:33 -05:00
version = "0.0.15"
2019-10-31 12:03:44 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 14:18:01 -04:00
checksum = "5ba7d7f7b201dfcbc314b14f2176c92f8ba521dab538b40e426ffed25ed7cd80"
2019-10-31 12:03:44 -04:00
[[package]]
name = "glob"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 14:18:01 -04:00
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
[[package]]
name = "itoa"
2020-06-19 14:13:37 -04:00
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 14:18:01 -04:00
checksum = "dc6f3ad7b9d11a0c00842ff8de1b60ee58661048eb8049ed33c73594f359d7e6"
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 14:18:01 -04:00
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2019-10-31 12:03:44 -04:00
[[package]]
name = "libc"
2020-08-26 23:59:40 -04:00
version = "0.2.76"
2019-10-31 12:03:44 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 14:18:01 -04:00
checksum = "755456fae044e6fa1ebbbd1b3e902ae19e73097ed4ed87bb79934a867c007bc3"
2019-10-31 12:03:44 -04:00
[[package]]
name = "proc-macro2"
2020-09-07 14:18:01 -04:00
version = "1.0.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 14:18:01 -04:00
checksum = "175c513d55719db99da20232b06cda8bab6b83ec2d04e3283edf0213c37c1a29"
dependencies = [
2020-09-07 14:18:01 -04:00
"unicode-xid",
]
[[package]]
name = "quote"
2020-06-19 14:13:37 -04:00
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 14:18:01 -04:00
checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37"
dependencies = [
2020-09-07 14:18:01 -04:00
"proc-macro2",
]
2019-10-07 19:56:41 -04:00
[[package]]
2019-10-31 21:01:29 -04:00
name = "rusty_v8"
2020-08-28 11:25:42 -04:00
version = "0.9.1"
2019-10-15 16:10:52 -04:00
dependencies = [
2020-09-07 14:18:01 -04:00
"bitflags",
"cargo_gn",
"lazy_static",
"libc",
"trybuild",
"which",
2019-10-31 12:03:44 -04:00
]
[[package]]
name = "ryu"
2020-06-04 08:09:12 -04:00
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 14:18:01 -04:00
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
[[package]]
name = "serde"
2020-08-26 23:59:40 -04:00
version = "1.0.115"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 14:18:01 -04:00
checksum = "e54c9a88f2da7238af84b5101443f0c0d0a3bbdc455e34a5c9497b1903ed55d5"
dependencies = [
2020-09-07 14:18:01 -04:00
"serde_derive",
]
[[package]]
name = "serde_derive"
2020-08-26 23:59:40 -04:00
version = "1.0.115"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 14:18:01 -04:00
checksum = "609feed1d0a73cc36a0182a840a9b37b4a82f0b1150369f0536a9e3f2a31dc48"
dependencies = [
2020-09-07 14:18:01 -04:00
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2020-07-28 09:11:09 -04:00
version = "1.0.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 14:18:01 -04:00
checksum = "164eacbdb13512ec2745fb09d51fd5b22b0d65ed294a1dcf7285a360c80a675c"
dependencies = [
2020-09-07 14:18:01 -04:00
"itoa",
"ryu",
"serde",
]
[[package]]
name = "syn"
2020-09-07 14:18:01 -04:00
version = "1.0.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 14:18:01 -04:00
checksum = "963f7d3cc59b59b9325165add223142bbf1df27655d07789f109896d353d8350"
dependencies = [
2020-09-07 14:18:01 -04:00
"proc-macro2",
"quote",
"unicode-xid",
]
[[package]]
name = "termcolor"
2020-01-16 17:02:53 -05:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 14:18:01 -04:00
checksum = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f"
dependencies = [
2020-09-07 14:18:01 -04:00
"winapi-util",
]
2020-06-04 08:09:12 -04:00
[[package]]
name = "thiserror"
2020-06-19 14:13:37 -04:00
version = "1.0.20"
2020-06-04 08:09:12 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 14:18:01 -04:00
checksum = "7dfdd070ccd8ccb78f4ad66bf1982dc37f620ef696c6b5028fe2ed83dd3d0d08"
2020-06-04 08:09:12 -04:00
dependencies = [
2020-09-07 14:18:01 -04:00
"thiserror-impl",
2020-06-04 08:09:12 -04:00
]
[[package]]
name = "thiserror-impl"
2020-06-19 14:13:37 -04:00
version = "1.0.20"
2020-06-04 08:09:12 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 14:18:01 -04:00
checksum = "bd80fc12f73063ac132ac92aceea36734f04a1d93c1240c6944e23a3b8841793"
2020-06-04 08:09:12 -04:00
dependencies = [
2020-09-07 14:18:01 -04:00
"proc-macro2",
"quote",
"syn",
2020-06-04 08:09:12 -04:00
]
[[package]]
name = "toml"
2020-01-16 17:02:53 -05:00
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 14:18:01 -04:00
checksum = "ffc92d160b1eef40665be3a05630d003936a3bc7da7421277846c2613e92c71a"
dependencies = [
2020-09-07 14:18:01 -04:00
"serde",
]
[[package]]
name = "trybuild"
2020-08-26 23:59:40 -04:00
version = "1.0.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 14:18:01 -04:00
checksum = "48105a4deaf74163c017939b45ef7322fba46e8b17281528039b0beb04235e92"
dependencies = [
2020-09-07 14:18:01 -04:00
"glob",
"lazy_static",
"serde",
"serde_json",
"termcolor",
"toml",
]
[[package]]
name = "unicode-xid"
2020-06-26 11:26:37 -04:00
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 14:18:01 -04:00
checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
2019-10-31 12:03:44 -04:00
[[package]]
name = "which"
2020-08-05 14:36:51 -04:00
version = "4.0.2"
2019-10-31 12:03:44 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 14:18:01 -04:00
checksum = "87c14ef7e1b8b8ecfc75d5eca37949410046e66f15d185c01d70824f1f8111ef"
2019-10-31 12:03:44 -04:00
dependencies = [
2020-09-07 14:18:01 -04:00
"libc",
"thiserror",
2019-10-15 16:10:52 -04:00
]
2019-10-07 19:56:41 -04:00
[[package]]
name = "winapi"
2020-06-26 11:26:37 -04:00
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 14:18:01 -04:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
2020-09-07 14:18:01 -04: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 14:18:01 -04:00
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
2020-04-22 13:21:17 -04:00
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-07 14:18:01 -04:00
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
2020-09-07 14:18:01 -04: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 14:18:01 -04:00
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"