diff options
| author | Divy Srivastava <dj.srivastava23@gmail.com> | 2022-07-22 17:54:22 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-22 17:54:22 +0530 |
| commit | 03dc3b8972f460e40d0b75fc3207cae9fe4f60da (patch) | |
| tree | 410bc92530e34ca2eee8a154f705be85ae9641b3 /Cargo.lock | |
| parent | 244c00d95b7ec8f30a5e81b743b4b618049b6c37 (diff) | |
feat(ops): V8 Fast Calls (#15122)
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index c3e84f40b..7489f9ba1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1118,12 +1118,14 @@ dependencies = [ name = "deno_ops" version = "0.22.0" dependencies = [ + "deno_core", "once_cell", "proc-macro-crate", "proc-macro2 1.0.39", "quote 1.0.18", "regex", "syn 1.0.96", + "trybuild", ] [[package]] @@ -1898,6 +1900,12 @@ dependencies = [ ] [[package]] +name = "glob" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" + +[[package]] name = "glow" version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -4954,6 +4962,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] +name = "trybuild" +version = "1.0.63" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "764b9e244b482a9b81bde596aa37aa6f1347bf8007adab25e59f901b32b4e0a0" +dependencies = [ + "glob", + "once_cell", + "serde", + "serde_derive", + "serde_json", + "termcolor", + "toml", +] + +[[package]] name = "tungstenite" version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" |
