2022-03-11 18:21:48 -06:00
|
|
|
# This file is automatically @generated by Cargo.
|
|
|
|
# It is not intended for manual editing.
|
|
|
|
version = 3
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "ahash"
|
|
|
|
version = "0.3.8"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e8fd72866655d1904d6b0997d0b07ba561047d070fbe29de039031c641b61217"
|
|
|
|
dependencies = [
|
|
|
|
"const-random",
|
|
|
|
]
|
|
|
|
|
2022-05-03 22:49:15 -05:00
|
|
|
[[package]]
|
2022-12-13 10:02:41 -06:00
|
|
|
name = "ariadne"
|
|
|
|
version = "0.1.5"
|
2022-05-03 22:49:15 -05:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-13 10:02:41 -06:00
|
|
|
checksum = "f1cb2a2046bea8ce5e875551f5772024882de0b540c7f93dfc5d6cf1ca8b030c"
|
2022-05-03 22:49:15 -05:00
|
|
|
dependencies = [
|
2022-12-13 10:02:41 -06:00
|
|
|
"yansi",
|
2022-05-03 22:49:15 -05:00
|
|
|
]
|
|
|
|
|
2022-03-11 18:21:48 -06:00
|
|
|
[[package]]
|
|
|
|
name = "cfg-if"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "chumsky"
|
|
|
|
version = "0.8.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8d02796e4586c6c41aeb68eae9bfb4558a522c35f1430c14b40136c3706e09e4"
|
|
|
|
dependencies = [
|
|
|
|
"ahash",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2022-12-13 10:02:41 -06:00
|
|
|
name = "compiler"
|
2022-03-11 18:21:48 -06:00
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2022-12-13 10:02:41 -06:00
|
|
|
"parser",
|
|
|
|
"vm",
|
2022-05-03 22:49:15 -05:00
|
|
|
]
|
|
|
|
|
2022-03-11 18:21:48 -06:00
|
|
|
[[package]]
|
|
|
|
name = "const-random"
|
2022-12-13 10:02:41 -06:00
|
|
|
version = "0.1.15"
|
2022-03-11 18:21:48 -06:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-13 10:02:41 -06:00
|
|
|
checksum = "368a7a772ead6ce7e1de82bfb04c485f3db8ec744f72925af5735e29a22cc18e"
|
2022-03-11 18:21:48 -06:00
|
|
|
dependencies = [
|
|
|
|
"const-random-macro",
|
|
|
|
"proc-macro-hack",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "const-random-macro"
|
2022-12-13 10:02:41 -06:00
|
|
|
version = "0.1.15"
|
2022-03-11 18:21:48 -06:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-13 10:02:41 -06:00
|
|
|
checksum = "9d7d6ab3c3a2282db210df5f02c4dab6e0a7057af0fb7ebd4070f30fe05c0ddb"
|
2022-03-11 18:21:48 -06:00
|
|
|
dependencies = [
|
|
|
|
"getrandom",
|
2022-12-13 10:02:41 -06:00
|
|
|
"once_cell",
|
2022-03-11 18:21:48 -06:00
|
|
|
"proc-macro-hack",
|
|
|
|
"tiny-keccak",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "crunchy"
|
|
|
|
version = "0.2.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
|
|
|
|
|
|
|
|
[[package]]
|
2022-12-13 10:02:41 -06:00
|
|
|
name = "entry"
|
|
|
|
version = "0.1.0"
|
2022-03-11 18:21:48 -06:00
|
|
|
dependencies = [
|
2022-12-13 10:02:41 -06:00
|
|
|
"compiler",
|
2022-12-20 08:21:21 -06:00
|
|
|
"lower",
|
2022-12-13 10:02:41 -06:00
|
|
|
"parser",
|
|
|
|
"vm",
|
2022-03-11 18:21:48 -06:00
|
|
|
]
|
|
|
|
|
2022-05-03 22:49:15 -05:00
|
|
|
[[package]]
|
2022-12-13 10:02:41 -06:00
|
|
|
name = "fnv"
|
|
|
|
version = "1.0.7"
|
2022-05-03 22:49:15 -05:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-13 10:02:41 -06:00
|
|
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
2022-05-03 22:49:15 -05:00
|
|
|
|
2022-03-11 18:21:48 -06:00
|
|
|
[[package]]
|
2022-12-13 10:02:41 -06:00
|
|
|
name = "getrandom"
|
|
|
|
version = "0.2.8"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
|
2022-03-11 18:21:48 -06:00
|
|
|
dependencies = [
|
2022-12-13 10:02:41 -06:00
|
|
|
"cfg-if",
|
|
|
|
"libc",
|
|
|
|
"wasi",
|
2022-03-11 18:21:48 -06:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "libc"
|
2022-12-13 10:02:41 -06:00
|
|
|
version = "0.2.138"
|
2022-03-11 18:21:48 -06:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-13 10:02:41 -06:00
|
|
|
checksum = "db6d7e329c562c5dfab7a46a2afabc8b987ab9a4834c9d1ca04dc54c1546cef8"
|
2022-03-11 18:21:48 -06:00
|
|
|
|
2022-12-19 01:28:30 -06:00
|
|
|
[[package]]
|
|
|
|
name = "lower"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
|
|
|
"parser",
|
|
|
|
]
|
|
|
|
|
2022-03-11 18:21:48 -06:00
|
|
|
[[package]]
|
2022-12-13 10:02:41 -06:00
|
|
|
name = "once_cell"
|
|
|
|
version = "1.16.0"
|
2022-03-11 18:21:48 -06:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-13 10:02:41 -06:00
|
|
|
checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
|
2022-03-11 18:21:48 -06:00
|
|
|
|
|
|
|
[[package]]
|
2022-12-13 10:02:41 -06:00
|
|
|
name = "parser"
|
2022-05-03 12:48:43 -05:00
|
|
|
version = "0.1.0"
|
2022-03-11 18:21:48 -06:00
|
|
|
dependencies = [
|
2022-12-13 10:02:41 -06:00
|
|
|
"ariadne",
|
2022-05-03 12:48:43 -05:00
|
|
|
"chumsky",
|
2022-03-11 18:21:48 -06:00
|
|
|
]
|
|
|
|
|
2022-12-13 10:02:41 -06:00
|
|
|
[[package]]
|
|
|
|
name = "proc-macro-hack"
|
|
|
|
version = "0.5.19"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
|
|
|
|
|
2022-03-11 18:21:48 -06:00
|
|
|
[[package]]
|
|
|
|
name = "tiny-keccak"
|
|
|
|
version = "2.0.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
|
|
dependencies = [
|
|
|
|
"crunchy",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2022-12-13 10:02:41 -06:00
|
|
|
name = "vm"
|
2022-03-23 00:45:35 -05:00
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2022-12-13 10:02:41 -06:00
|
|
|
"fnv",
|
2022-03-23 00:45:35 -05:00
|
|
|
]
|
|
|
|
|
2022-03-11 18:21:48 -06:00
|
|
|
[[package]]
|
|
|
|
name = "wasi"
|
2022-12-13 10:02:41 -06:00
|
|
|
version = "0.11.0+wasi-snapshot-preview1"
|
2022-05-03 22:49:15 -05:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-13 10:02:41 -06:00
|
|
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
2022-05-03 22:49:15 -05:00
|
|
|
|
|
|
|
[[package]]
|
2022-12-13 10:02:41 -06:00
|
|
|
name = "yansi"
|
|
|
|
version = "0.5.1"
|
2022-05-03 22:49:15 -05:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-13 10:02:41 -06:00
|
|
|
checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
|