roxxie-proxy-u-prod 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +661 -0
- package/README.md +123 -0
- package/SOURCE.md +29 -0
- package/THIRD_PARTY_NOTICES.md +24 -0
- package/dist/assets/filters-Bu_3nHVy.bin +0 -0
- package/dist/assets/index-BdRlQ7d_.css +1 -0
- package/dist/assets/index-DcvPYWS3.js +3621 -0
- package/dist/assets/inject-BnVzMVpl.js +40 -0
- package/dist/assets/scramjet-C9HLwI-y.wasm +0 -0
- package/dist/defaultfavicon.png +0 -0
- package/dist/icon.png +0 -0
- package/dist/roxxie-icon.svg +12 -0
- package/embed.js +70 -0
- package/examples/single-page.html +25 -0
- package/package.json +42 -0
- package/runtime/controller.sw.js +273 -0
- package/runtime/index.html +18 -0
- package/runtime/localcontrollersw.js +7 -0
- package/runtime/roxxie-network.json +13 -0
- package/runtime/sw.js +6 -0
- package/scripts/build.mjs +344 -0
- package/scripts/smoke.mjs +123 -0
- package/scripts/verify.mjs +122 -0
- package/source/external/dreamlandjs/LICENSE +21 -0
- package/source/external/dreamlandjs/README.md +22 -0
- package/source/external/dreamlandjs/dist/core.d.ts +167 -0
- package/source/external/dreamlandjs/dist/core.js +2 -0
- package/source/external/dreamlandjs/dist/core.js.map +1 -0
- package/source/external/dreamlandjs/dist/core.size.html +4950 -0
- package/source/external/dreamlandjs/dist/js-runtime.d.ts +3 -0
- package/source/external/dreamlandjs/dist/js-runtime.js +2 -0
- package/source/external/dreamlandjs/dist/js-runtime.js.map +1 -0
- package/source/external/dreamlandjs/dist/jsx-runtime.d.ts +1 -0
- package/source/external/dreamlandjs/dist/jsx-runtime.js +2 -0
- package/source/external/dreamlandjs/dist/jsx-runtime.js.map +1 -0
- package/source/external/dreamlandjs/dist/motion.d.ts +19 -0
- package/source/external/dreamlandjs/dist/motion.js +2 -0
- package/source/external/dreamlandjs/dist/motion.js.map +1 -0
- package/source/external/dreamlandjs/dist/router.d.ts +48 -0
- package/source/external/dreamlandjs/dist/router.js +2 -0
- package/source/external/dreamlandjs/dist/router.js.map +1 -0
- package/source/external/dreamlandjs/dist/ssr.client.d.ts +3 -0
- package/source/external/dreamlandjs/dist/ssr.client.js +2 -0
- package/source/external/dreamlandjs/dist/ssr.client.js.map +1 -0
- package/source/external/dreamlandjs/dist/ssr.client.size.html +4950 -0
- package/source/external/dreamlandjs/dist/ssr.hybrid.d.ts +7 -0
- package/source/external/dreamlandjs/dist/ssr.hybrid.js +2 -0
- package/source/external/dreamlandjs/dist/ssr.hybrid.js.map +1 -0
- package/source/external/dreamlandjs/dist/ssr.hybrid.size.html +4950 -0
- package/source/external/dreamlandjs/dist/ssr.server.d.ts +11 -0
- package/source/external/dreamlandjs/dist/ssr.server.js +2373 -0
- package/source/external/dreamlandjs/dist/ssr.server.js.map +1 -0
- package/source/external/dreamlandjs/dist/types/core/consts.d.ts +16 -0
- package/source/external/dreamlandjs/dist/types/core/css/index.d.ts +11 -0
- package/source/external/dreamlandjs/dist/types/core/css/selectorParser.d.ts +50 -0
- package/source/external/dreamlandjs/dist/types/core/delegate.d.ts +10 -0
- package/source/external/dreamlandjs/dist/types/core/index.d.ts +9 -0
- package/source/external/dreamlandjs/dist/types/core/jsx/child.d.ts +2 -0
- package/source/external/dreamlandjs/dist/types/core/jsx/definitions.d.ts +76 -0
- package/source/external/dreamlandjs/dist/types/core/jsx/dom.d.ts +28 -0
- package/source/external/dreamlandjs/dist/types/core/jsx/index.d.ts +14 -0
- package/source/external/dreamlandjs/dist/types/core/state/index.d.ts +1 -0
- package/source/external/dreamlandjs/dist/types/core/state/pointers.d.ts +37 -0
- package/source/external/dreamlandjs/dist/types/core/state/state.d.ts +13 -0
- package/source/external/dreamlandjs/dist/types/core/state/use.d.ts +11 -0
- package/source/external/dreamlandjs/dist/types/core/utils.d.ts +4 -0
- package/source/external/dreamlandjs/dist/types/js-runtime/index.d.ts +1 -0
- package/source/external/dreamlandjs/dist/types/jsx-runtime/index.d.ts +2 -0
- package/source/external/dreamlandjs/dist/types/motion/index.d.ts +15 -0
- package/source/external/dreamlandjs/dist/types/router/index.d.ts +45 -0
- package/source/external/dreamlandjs/dist/types/ssr/client/index.d.ts +1 -0
- package/source/external/dreamlandjs/dist/types/ssr/common/consts.d.ts +4 -0
- package/source/external/dreamlandjs/dist/types/ssr/common/serialize.d.ts +4 -0
- package/source/external/dreamlandjs/dist/types/ssr/common/types.d.ts +21 -0
- package/source/external/dreamlandjs/dist/types/ssr/hybrid/index.d.ts +4 -0
- package/source/external/dreamlandjs/dist/types/ssr/server/index.d.ts +7 -0
- package/source/external/dreamlandjs/dist/types/ssr/server/vdom.d.ts +71 -0
- package/source/external/dreamlandjs/dist/types/util/index.d.ts +1 -0
- package/source/external/dreamlandjs/dist/types/util/store.d.ts +26 -0
- package/source/external/dreamlandjs/dist/types/vite/css-minifier.d.ts +7 -0
- package/source/external/dreamlandjs/dist/types/vite/index.d.ts +11 -0
- package/source/external/dreamlandjs/dist/util.d.ts +29 -0
- package/source/external/dreamlandjs/dist/util.js +2 -0
- package/source/external/dreamlandjs/dist/util.js.map +1 -0
- package/source/external/dreamlandjs/dist/vite.d.ts +19 -0
- package/source/external/dreamlandjs/dist/vite.js +2 -0
- package/source/external/dreamlandjs/dist/vite.js.map +1 -0
- package/source/external/dreamlandjs/package.json +101 -0
- package/source/external/dreamlandjs/rollup.config.ts +302 -0
- package/source/external/dreamlandjs/rollup.plugins.ts +1134 -0
- package/source/external/dreamlandjs/src/core/consts.d.ts +16 -0
- package/source/external/dreamlandjs/src/core/consts.js +18 -0
- package/source/external/dreamlandjs/src/core/css/index.ts +111 -0
- package/source/external/dreamlandjs/src/core/css/selectorParser.ts +313 -0
- package/source/external/dreamlandjs/src/core/delegate.ts +28 -0
- package/source/external/dreamlandjs/src/core/index.ts +31 -0
- package/source/external/dreamlandjs/src/core/jsx/child.ts +91 -0
- package/source/external/dreamlandjs/src/core/jsx/definitions.ts +125 -0
- package/source/external/dreamlandjs/src/core/jsx/dom.ts +49 -0
- package/source/external/dreamlandjs/src/core/jsx/index.ts +289 -0
- package/source/external/dreamlandjs/src/core/state/index.ts +1 -0
- package/source/external/dreamlandjs/src/core/state/pointers.ts +310 -0
- package/source/external/dreamlandjs/src/core/state/state.ts +112 -0
- package/source/external/dreamlandjs/src/core/state/use.ts +82 -0
- package/source/external/dreamlandjs/src/core/utils.ts +48 -0
- package/source/external/dreamlandjs/src/js-runtime/index.ts +4 -0
- package/source/external/dreamlandjs/src/jsx-runtime/index.ts +3 -0
- package/source/external/dreamlandjs/src/motion/index.ts +156 -0
- package/source/external/dreamlandjs/src/router/index.tsx +394 -0
- package/source/external/dreamlandjs/src/router/tsconfig.json +9 -0
- package/source/external/dreamlandjs/src/ssr/client/index.ts +193 -0
- package/source/external/dreamlandjs/src/ssr/common/consts.ts +5 -0
- package/source/external/dreamlandjs/src/ssr/common/serialize.ts +115 -0
- package/source/external/dreamlandjs/src/ssr/common/types.ts +28 -0
- package/source/external/dreamlandjs/src/ssr/hybrid/index.ts +144 -0
- package/source/external/dreamlandjs/src/ssr/server/index.ts +157 -0
- package/source/external/dreamlandjs/src/ssr/server/tsconfig.json +7 -0
- package/source/external/dreamlandjs/src/ssr/server/vdom.ts +285 -0
- package/source/external/dreamlandjs/src/util/index.ts +10 -0
- package/source/external/dreamlandjs/src/util/store.ts +134 -0
- package/source/external/dreamlandjs/src/vite/css-minifier.ts +222 -0
- package/source/external/dreamlandjs/src/vite/index.ts +60 -0
- package/source/external/dreamlandjs/src/vite/tsconfig.json +7 -0
- package/source/external/dreamlandjs/tsconfig.json +15 -0
- package/source/package.json +48 -0
- package/source/packages/adrift-protocol/package.json +31 -0
- package/source/packages/adrift-protocol/src/index.ts +348 -0
- package/source/packages/adrift-protocol/tsconfig.json +18 -0
- package/source/packages/cdp/LICENSE +21 -0
- package/source/packages/cdp/README.md +47 -0
- package/source/packages/cdp/dist/chobitsu.js +2 -0
- package/source/packages/cdp/dist/chobitsu.js.map +1 -0
- package/source/packages/cdp/package.json +73 -0
- package/source/packages/cdp/script/build.js +15 -0
- package/source/packages/cdp/src/Chobitsu.ts +110 -0
- package/source/packages/cdp/src/domains/CSS.ts +378 -0
- package/source/packages/cdp/src/domains/CacheStorage.ts +8 -0
- package/source/packages/cdp/src/domains/DOM.ts +487 -0
- package/source/packages/cdp/src/domains/DOMDebugger.ts +109 -0
- package/source/packages/cdp/src/domains/DOMStorage.ts +122 -0
- package/source/packages/cdp/src/domains/Debugger.ts +25 -0
- package/source/packages/cdp/src/domains/IndexedDB.ts +207 -0
- package/source/packages/cdp/src/domains/Input.ts +177 -0
- package/source/packages/cdp/src/domains/Network.ts +251 -0
- package/source/packages/cdp/src/domains/Overlay.ts +230 -0
- package/source/packages/cdp/src/domains/Page.ts +296 -0
- package/source/packages/cdp/src/domains/Runtime.ts +273 -0
- package/source/packages/cdp/src/domains/Storage.ts +71 -0
- package/source/packages/cdp/src/index.d.ts +8 -0
- package/source/packages/cdp/src/index.ts +153 -0
- package/source/packages/cdp/src/lib/connector.ts +15 -0
- package/source/packages/cdp/src/lib/constants.ts +1 -0
- package/source/packages/cdp/src/lib/evaluate.ts +59 -0
- package/source/packages/cdp/src/lib/mutationObserver.ts +39 -0
- package/source/packages/cdp/src/lib/nodeManager.ts +142 -0
- package/source/packages/cdp/src/lib/objManager.ts +422 -0
- package/source/packages/cdp/src/lib/request.ts +313 -0
- package/source/packages/cdp/src/lib/resources.ts +59 -0
- package/source/packages/cdp/src/lib/scriptMananger.ts +62 -0
- package/source/packages/cdp/src/lib/stylesheet.ts +146 -0
- package/source/packages/cdp/src/lib/util.ts +105 -0
- package/source/packages/cdp/tsconfig.json +16 -0
- package/source/packages/cdp/webpack.config.js +48 -0
- package/source/packages/chrome/index.html +17 -0
- package/source/packages/chrome/package.json +41 -0
- package/source/packages/chrome/public/ROXXIE_NETWORK.md +22 -0
- package/source/packages/chrome/public/controller.sw.js +273 -0
- package/source/packages/chrome/public/defaultfavicon.png +0 -0
- package/source/packages/chrome/public/icon.png +0 -0
- package/source/packages/chrome/public/localcontrollersw.js +7 -0
- package/source/packages/chrome/public/roxxie-icon.svg +12 -0
- package/source/packages/chrome/public/roxxie-network.json +13 -0
- package/source/packages/chrome/public/sw.js +6 -0
- package/source/packages/chrome/src/App.tsx +269 -0
- package/source/packages/chrome/src/CDP.ts +285 -0
- package/source/packages/chrome/src/Tab/History.ts +186 -0
- package/source/packages/chrome/src/Tab/Tab.tsx +219 -0
- package/source/packages/chrome/src/Tab/screenshot.ts +66 -0
- package/source/packages/chrome/src/Tab/serialize.ts +221 -0
- package/source/packages/chrome/src/adblock/AdBlockPlugin.test.ts +159 -0
- package/source/packages/chrome/src/adblock/AdBlockPlugin.ts +232 -0
- package/source/packages/chrome/src/adblock/AdBlockService.test.ts +148 -0
- package/source/packages/chrome/src/adblock/AdBlockService.ts +166 -0
- package/source/packages/chrome/src/adblock/NOTICE.md +14 -0
- package/source/packages/chrome/src/adblock/assets/filters.bin +0 -0
- package/source/packages/chrome/src/adblock/index.ts +18 -0
- package/source/packages/chrome/src/assets/favicon.ts +4 -0
- package/source/packages/chrome/src/components/BookmarkPopup.tsx +101 -0
- package/source/packages/chrome/src/components/BookmarksStrip.tsx +150 -0
- package/source/packages/chrome/src/components/Button.tsx +99 -0
- package/source/packages/chrome/src/components/Checkbox.tsx +89 -0
- package/source/packages/chrome/src/components/DownloadsPopup.tsx +230 -0
- package/source/packages/chrome/src/components/Favicon.tsx +65 -0
- package/source/packages/chrome/src/components/Icon.tsx +29 -0
- package/source/packages/chrome/src/components/Input.tsx +82 -0
- package/source/packages/chrome/src/components/Menu.tsx +287 -0
- package/source/packages/chrome/src/components/Omnibar/BookmarkButton.tsx +73 -0
- package/source/packages/chrome/src/components/Omnibar/CircularProgress.tsx +83 -0
- package/source/packages/chrome/src/components/Omnibar/Omnibar.tsx +455 -0
- package/source/packages/chrome/src/components/Omnibar/OmnibarButton.tsx +48 -0
- package/source/packages/chrome/src/components/Omnibar/Omnibox.tsx +466 -0
- package/source/packages/chrome/src/components/Omnibar/SiteOptionsButton.tsx +52 -0
- package/source/packages/chrome/src/components/Omnibar/Suggestion.tsx +186 -0
- package/source/packages/chrome/src/components/Omnibar/UrlInput.tsx +198 -0
- package/source/packages/chrome/src/components/Omnibar/suggestions.ts +468 -0
- package/source/packages/chrome/src/components/Omnibar/utils.ts +11 -0
- package/source/packages/chrome/src/components/ReportBrokenSiteModal.tsx +279 -0
- package/source/packages/chrome/src/components/Shell.tsx +191 -0
- package/source/packages/chrome/src/components/SiteInformationPopup.tsx +96 -0
- package/source/packages/chrome/src/components/SmallIconButton.tsx +36 -0
- package/source/packages/chrome/src/components/StartScreen.tsx +386 -0
- package/source/packages/chrome/src/components/TabStrip/DragTab.tsx +546 -0
- package/source/packages/chrome/src/components/TabStrip/Sidebar.tsx +820 -0
- package/source/packages/chrome/src/components/TabStrip/TabHoverCard.tsx +87 -0
- package/source/packages/chrome/src/components/TabStrip/TabStrip.tsx +510 -0
- package/source/packages/chrome/src/components/TopSiteButton.tsx +234 -0
- package/source/packages/chrome/src/consts.ts +3 -0
- package/source/packages/chrome/src/icons.ts +70 -0
- package/source/packages/chrome/src/index.ts +168 -0
- package/source/packages/chrome/src/migrations/0-from-legacy.ts +6 -0
- package/source/packages/chrome/src/migrations/1-vertical-tab-settings.ts +15 -0
- package/source/packages/chrome/src/migrations/index.ts +42 -0
- package/source/packages/chrome/src/pages/AboutPage.tsx +37 -0
- package/source/packages/chrome/src/pages/DownloadsPage.tsx +133 -0
- package/source/packages/chrome/src/pages/HistoryPage.tsx +99 -0
- package/source/packages/chrome/src/pages/NewTabPage.tsx +264 -0
- package/source/packages/chrome/src/pages/PlaygroundPage.tsx +43 -0
- package/source/packages/chrome/src/pages/SettingsPage.tsx +1931 -0
- package/source/packages/chrome/src/proxy/Controller.ts +331 -0
- package/source/packages/chrome/src/proxy/ProxyFrame.ts +26 -0
- package/source/packages/chrome/src/proxy/cache.ts +487 -0
- package/source/packages/chrome/src/proxy/codec.ts +11 -0
- package/source/packages/chrome/src/proxy/contextitems.ts +180 -0
- package/source/packages/chrome/src/proxy/index.ts +5 -0
- package/source/packages/chrome/src/proxy/roxxie.ts +85 -0
- package/source/packages/chrome/src/proxy/scramjet.ts +642 -0
- package/source/packages/chrome/src/reset.css +124 -0
- package/source/packages/chrome/src/runtime-base.ts +16 -0
- package/source/packages/chrome/src/sentry.tsx +45 -0
- package/source/packages/chrome/src/services/DownloadsService.ts +136 -0
- package/source/packages/chrome/src/services/FaviconService.ts +161 -0
- package/source/packages/chrome/src/services/KVWrapper.ts +169 -0
- package/source/packages/chrome/src/services/ProfileService.ts +94 -0
- package/source/packages/chrome/src/services/Service.ts +10 -0
- package/source/packages/chrome/src/services/SettingsService.ts +108 -0
- package/source/packages/chrome/src/services/TabsService.ts +161 -0
- package/source/packages/chrome/src/startup.test.ts +129 -0
- package/source/packages/chrome/src/startup.ts +161 -0
- package/source/packages/chrome/src/style.css +229 -0
- package/source/packages/chrome/src/themes.ts +756 -0
- package/source/packages/chrome/src/util/StatefulClass.ts +31 -0
- package/source/packages/chrome/src/util/index.ts +74 -0
- package/source/packages/chrome/src/util/memoize.ts +13 -0
- package/source/packages/chrome/src/vite-env.d.ts +16 -0
- package/source/packages/chrome/tsconfig.json +30 -0
- package/source/packages/chrome/vite.config.ts +47 -0
- package/source/packages/inject/package.json +20 -0
- package/source/packages/inject/src/context.ts +194 -0
- package/source/packages/inject/src/emulators/alwaysLastBubble.ts +168 -0
- package/source/packages/inject/src/emulators/anchors.ts +55 -0
- package/source/packages/inject/src/emulators/contextmenu.ts +46 -0
- package/source/packages/inject/src/emulators/history.ts +51 -0
- package/source/packages/inject/src/emulators/titlewatcher.ts +42 -0
- package/source/packages/inject/src/emulators/windowopen.ts +134 -0
- package/source/packages/inject/src/errorpage/errorpage.css +234 -0
- package/source/packages/inject/src/errorpage/errorpage.html +29 -0
- package/source/packages/inject/src/errorpage/errorpage.ts +76 -0
- package/source/packages/inject/src/index.ts +62 -0
- package/source/packages/inject/src/transport.ts +97 -0
- package/source/packages/inject/src/types.d.ts +136 -0
- package/source/packages/roxxie-transport/package.json +36 -0
- package/source/packages/roxxie-transport/src/binary.ts +398 -0
- package/source/packages/roxxie-transport/src/config.ts +254 -0
- package/source/packages/roxxie-transport/src/connection.ts +767 -0
- package/source/packages/roxxie-transport/src/index.ts +5 -0
- package/source/packages/roxxie-transport/src/tracker.ts +651 -0
- package/source/packages/roxxie-transport/src/transport.ts +414 -0
- package/source/packages/roxxie-transport/tsconfig.json +18 -0
- package/source/packages/scramjet/packages/controller/package.json +37 -0
- package/source/packages/scramjet/packages/controller/src/index.ts +861 -0
- package/source/packages/scramjet/packages/controller/src/inject.ts +365 -0
- package/source/packages/scramjet/packages/controller/src/sw.ts +231 -0
- package/source/packages/scramjet/packages/controller/src/symbols.ts +1 -0
- package/source/packages/scramjet/packages/controller/src/types.d.ts +140 -0
- package/source/packages/scramjet/packages/controller/src/typesEntry.ts +6 -0
- package/source/packages/scramjet/packages/controller/src/version.ts +30 -0
- package/source/packages/scramjet/packages/controller/tsconfig.json +24 -0
- package/source/packages/scramjet/packages/core/dist/scramjet-external.mjs +57 -0
- package/source/packages/scramjet/packages/core/dist/scramjet.js +13599 -0
- package/source/packages/scramjet/packages/core/dist/scramjet.js.map +1 -0
- package/source/packages/scramjet/packages/core/dist/scramjet.mjs +13649 -0
- package/source/packages/scramjet/packages/core/dist/scramjet.mjs.map +1 -0
- package/source/packages/scramjet/packages/core/dist/scramjet.wasm +0 -0
- package/source/packages/scramjet/packages/core/dist/scramjet_bundled.js +13601 -0
- package/source/packages/scramjet/packages/core/dist/scramjet_bundled.js.map +1 -0
- package/source/packages/scramjet/packages/core/dist/scramjet_bundled.mjs +13651 -0
- package/source/packages/scramjet/packages/core/dist/scramjet_bundled.mjs.map +1 -0
- package/source/packages/scramjet/packages/core/dist/temp-types-build/index.js +23 -0
- package/source/packages/scramjet/packages/core/dist/temp-types-build/index.js.map +1 -0
- package/source/packages/scramjet/packages/core/dist/types/Tap.d.ts +39 -0
- package/source/packages/scramjet/packages/core/dist/types/client/client.d.ts +115 -0
- package/source/packages/scramjet/packages/core/dist/types/client/entry.d.ts +5 -0
- package/source/packages/scramjet/packages/core/dist/types/client/events.d.ts +10 -0
- package/source/packages/scramjet/packages/core/dist/types/client/helpers.d.ts +1 -0
- package/source/packages/scramjet/packages/core/dist/types/client/index.d.ts +7 -0
- package/source/packages/scramjet/packages/core/dist/types/client/location.d.ts +2 -0
- package/source/packages/scramjet/packages/core/dist/types/client/shared/eval.d.ts +3 -0
- package/source/packages/scramjet/packages/core/dist/types/client/shared/sourcemaps.d.ts +19 -0
- package/source/packages/scramjet/packages/core/dist/types/client/shared/wrap.d.ts +4 -0
- package/source/packages/scramjet/packages/core/dist/types/client/singletonbox.d.ts +18 -0
- package/source/packages/scramjet/packages/core/dist/types/fetch/body.d.ts +3 -0
- package/source/packages/scramjet/packages/core/dist/types/fetch/fetch.d.ts +7 -0
- package/source/packages/scramjet/packages/core/dist/types/fetch/headers.d.ts +19 -0
- package/source/packages/scramjet/packages/core/dist/types/fetch/index.d.ts +128 -0
- package/source/packages/scramjet/packages/core/dist/types/fetch/parse.d.ts +23 -0
- package/source/packages/scramjet/packages/core/dist/types/fetch/util.d.ts +7 -0
- package/source/packages/scramjet/packages/core/dist/types/index.d.ts +12 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/cookie.d.ts +26 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/headers.d.ts +13 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/htmlRules.d.ts +6 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/index.d.ts +50 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/mime.d.ts +53 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/refresh.d.ts +7 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/rewriters/css.d.ts +4 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/rewriters/html.d.ts +33 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/rewriters/index.d.ts +6 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/rewriters/js.d.ts +11 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/rewriters/url.d.ts +24 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/rewriters/wasm.d.ts +7 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/rewriters/worker.d.ts +3 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/set-cookie-parser.d.ts +20 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/snapshot.d.ts +186 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/sniffEncoding.d.ts +65 -0
- package/source/packages/scramjet/packages/core/dist/types/shared/util.d.ts +2 -0
- package/source/packages/scramjet/packages/core/dist/types/symbols.d.ts +6 -0
- package/source/packages/scramjet/packages/core/dist/types/types.d.ts +60 -0
- package/source/packages/scramjet/packages/core/dist/types/typesEntry.d.ts +5 -0
- package/source/packages/scramjet/packages/core/lib/index.cjs +7 -0
- package/source/packages/scramjet/packages/core/lib/index.d.ts +8 -0
- package/source/packages/scramjet/packages/core/package.json +69 -0
- package/source/packages/scramjet/packages/core/rewriter/Cargo.lock +1985 -0
- package/source/packages/scramjet/packages/core/rewriter/Cargo.toml +20 -0
- package/source/packages/scramjet/packages/core/rewriter/coverage-macro/Cargo.toml +15 -0
- package/source/packages/scramjet/packages/core/rewriter/coverage-macro/src/analyze.rs +1118 -0
- package/source/packages/scramjet/packages/core/rewriter/coverage-macro/src/ast_table.rs +927 -0
- package/source/packages/scramjet/packages/core/rewriter/coverage-macro/src/helper_index.rs +556 -0
- package/source/packages/scramjet/packages/core/rewriter/coverage-macro/src/lib.rs +455 -0
- package/source/packages/scramjet/packages/core/rewriter/coverage-macro/src/reachability.rs +85 -0
- package/source/packages/scramjet/packages/core/rewriter/coverage-macro/src/templates.rs +192 -0
- package/source/packages/scramjet/packages/core/rewriter/coverage-macro/src/witness.rs +597 -0
- package/source/packages/scramjet/packages/core/rewriter/js/Cargo.toml +18 -0
- package/source/packages/scramjet/packages/core/rewriter/js/src/cfg.rs +45 -0
- package/source/packages/scramjet/packages/core/rewriter/js/src/changes.rs +379 -0
- package/source/packages/scramjet/packages/core/rewriter/js/src/lib.rs +171 -0
- package/source/packages/scramjet/packages/core/rewriter/js/src/rewrite.rs +290 -0
- package/source/packages/scramjet/packages/core/rewriter/js/src/visitor.rs +967 -0
- package/source/packages/scramjet/packages/core/rewriter/native/Cargo.toml +22 -0
- package/source/packages/scramjet/packages/core/rewriter/native/src/main.rs +166 -0
- package/source/packages/scramjet/packages/core/rewriter/native/src/rewriter.rs +161 -0
- package/source/packages/scramjet/packages/core/rewriter/native/src/test_runner.rs +156 -0
- package/source/packages/scramjet/packages/core/rewriter/rust-toolchain.toml +5 -0
- package/source/packages/scramjet/packages/core/rewriter/rustfmt.toml +2 -0
- package/source/packages/scramjet/packages/core/rewriter/transform/Cargo.toml +16 -0
- package/source/packages/scramjet/packages/core/rewriter/transform/src/lib.rs +242 -0
- package/source/packages/scramjet/packages/core/rewriter/transform/src/transform.rs +123 -0
- package/source/packages/scramjet/packages/core/rewriter/wasm/Cargo.toml +22 -0
- package/source/packages/scramjet/packages/core/rewriter/wasm/build.sh +128 -0
- package/source/packages/scramjet/packages/core/rewriter/wasm/src/error.rs +56 -0
- package/source/packages/scramjet/packages/core/rewriter/wasm/src/jsr.rs +125 -0
- package/source/packages/scramjet/packages/core/rewriter/wasm/src/lib.rs +144 -0
- package/source/packages/scramjet/packages/core/src/Tap.ts +166 -0
- package/source/packages/scramjet/packages/core/src/client/client.ts +916 -0
- package/source/packages/scramjet/packages/core/src/client/dom/attr.ts +94 -0
- package/source/packages/scramjet/packages/core/src/client/dom/beacon.ts +11 -0
- package/source/packages/scramjet/packages/core/src/client/dom/cookie.ts +21 -0
- package/source/packages/scramjet/packages/core/src/client/dom/css.ts +106 -0
- package/source/packages/scramjet/packages/core/src/client/dom/document.ts +140 -0
- package/source/packages/scramjet/packages/core/src/client/dom/element.ts +783 -0
- package/source/packages/scramjet/packages/core/src/client/dom/fontface.ts +11 -0
- package/source/packages/scramjet/packages/core/src/client/dom/fragments.ts +32 -0
- package/source/packages/scramjet/packages/core/src/client/dom/history.ts +35 -0
- package/source/packages/scramjet/packages/core/src/client/dom/open.ts +59 -0
- package/source/packages/scramjet/packages/core/src/client/dom/origin.ts +13 -0
- package/source/packages/scramjet/packages/core/src/client/dom/performance.ts +50 -0
- package/source/packages/scramjet/packages/core/src/client/dom/protocol.ts +17 -0
- package/source/packages/scramjet/packages/core/src/client/dom/storage.ts +107 -0
- package/source/packages/scramjet/packages/core/src/client/entry.ts +12 -0
- package/source/packages/scramjet/packages/core/src/client/events.ts +10 -0
- package/source/packages/scramjet/packages/core/src/client/helpers.ts +7 -0
- package/source/packages/scramjet/packages/core/src/client/index.ts +7 -0
- package/source/packages/scramjet/packages/core/src/client/location.ts +139 -0
- package/source/packages/scramjet/packages/core/src/client/shared/antiantidebugger.ts +20 -0
- package/source/packages/scramjet/packages/core/src/client/shared/blob.ts +35 -0
- package/source/packages/scramjet/packages/core/src/client/shared/caches.ts +31 -0
- package/source/packages/scramjet/packages/core/src/client/shared/chrome.ts +90 -0
- package/source/packages/scramjet/packages/core/src/client/shared/err.ts +55 -0
- package/source/packages/scramjet/packages/core/src/client/shared/error.ts +42 -0
- package/source/packages/scramjet/packages/core/src/client/shared/eval.ts +40 -0
- package/source/packages/scramjet/packages/core/src/client/shared/event.ts +215 -0
- package/source/packages/scramjet/packages/core/src/client/shared/function.ts +59 -0
- package/source/packages/scramjet/packages/core/src/client/shared/import.ts +46 -0
- package/source/packages/scramjet/packages/core/src/client/shared/indexeddb.ts +18 -0
- package/source/packages/scramjet/packages/core/src/client/shared/opfs.ts +27 -0
- package/source/packages/scramjet/packages/core/src/client/shared/postmessage.ts +113 -0
- package/source/packages/scramjet/packages/core/src/client/shared/realm.ts +26 -0
- package/source/packages/scramjet/packages/core/src/client/shared/requests/eventsource.ts +17 -0
- package/source/packages/scramjet/packages/core/src/client/shared/requests/fetch.ts +67 -0
- package/source/packages/scramjet/packages/core/src/client/shared/requests/websocket.ts +389 -0
- package/source/packages/scramjet/packages/core/src/client/shared/requests/xmlhttprequest.ts +163 -0
- package/source/packages/scramjet/packages/core/src/client/shared/settimeout.ts +20 -0
- package/source/packages/scramjet/packages/core/src/client/shared/sourcemaps.ts +203 -0
- package/source/packages/scramjet/packages/core/src/client/shared/worker.ts +72 -0
- package/source/packages/scramjet/packages/core/src/client/shared/wrap.ts +197 -0
- package/source/packages/scramjet/packages/core/src/client/singletonbox.ts +52 -0
- package/source/packages/scramjet/packages/core/src/client/worker/importScripts.ts +13 -0
- package/source/packages/scramjet/packages/core/src/fetch/body.ts +93 -0
- package/source/packages/scramjet/packages/core/src/fetch/fetch.ts +323 -0
- package/source/packages/scramjet/packages/core/src/fetch/headers.ts +528 -0
- package/source/packages/scramjet/packages/core/src/fetch/index.ts +198 -0
- package/source/packages/scramjet/packages/core/src/fetch/parse.ts +149 -0
- package/source/packages/scramjet/packages/core/src/fetch/util.ts +81 -0
- package/source/packages/scramjet/packages/core/src/global.d.ts +32 -0
- package/source/packages/scramjet/packages/core/src/index.ts +78 -0
- package/source/packages/scramjet/packages/core/src/log.ts +117 -0
- package/source/packages/scramjet/packages/core/src/shared/cookie.ts +199 -0
- package/source/packages/scramjet/packages/core/src/shared/headers.ts +76 -0
- package/source/packages/scramjet/packages/core/src/shared/htmlRules.ts +154 -0
- package/source/packages/scramjet/packages/core/src/shared/index.ts +79 -0
- package/source/packages/scramjet/packages/core/src/shared/mime.ts +234 -0
- package/source/packages/scramjet/packages/core/src/shared/refresh.ts +164 -0
- package/source/packages/scramjet/packages/core/src/shared/rewriters/css.ts +67 -0
- package/source/packages/scramjet/packages/core/src/shared/rewriters/html.ts +603 -0
- package/source/packages/scramjet/packages/core/src/shared/rewriters/index.ts +6 -0
- package/source/packages/scramjet/packages/core/src/shared/rewriters/js.ts +158 -0
- package/source/packages/scramjet/packages/core/src/shared/rewriters/url.ts +248 -0
- package/source/packages/scramjet/packages/core/src/shared/rewriters/wasm.ts +58 -0
- package/source/packages/scramjet/packages/core/src/shared/rewriters/worker.ts +37 -0
- package/source/packages/scramjet/packages/core/src/shared/set-cookie-parser.ts +195 -0
- package/source/packages/scramjet/packages/core/src/shared/snapshot.ts +245 -0
- package/source/packages/scramjet/packages/core/src/shared/sniffEncoding.ts +1061 -0
- package/source/packages/scramjet/packages/core/src/shared/util.ts +35 -0
- package/source/packages/scramjet/packages/core/src/symbols.ts +9 -0
- package/source/packages/scramjet/packages/core/src/sync.ts +63 -0
- package/source/packages/scramjet/packages/core/src/types.ts +66 -0
- package/source/packages/scramjet/packages/core/src/typesEntry.ts +6 -0
- package/source/packages/scramjet/packages/core/tsconfig.json +21 -0
- package/source/packages/scramjet/packages/rpc/index.ts +100 -0
- package/source/packages/scramjet/packages/rpc/package.json +7 -0
- package/source/packages/scramjet/packages/utils/package.json +39 -0
- package/source/packages/scramjet/packages/utils/src/alwaysLastBubble.ts +172 -0
- package/source/packages/scramjet/packages/utils/src/catch-escaped-links.ts +34 -0
- package/source/packages/scramjet/packages/utils/src/event-handler-plugin.ts +86 -0
- package/source/packages/scramjet/packages/utils/src/global.d.ts +8 -0
- package/source/packages/scramjet/packages/utils/src/http-cache-plugin.ts +475 -0
- package/source/packages/scramjet/packages/utils/src/index.ts +26 -0
- package/source/packages/scramjet/packages/utils/src/link-handler-plugin.ts +75 -0
- package/source/packages/scramjet/packages/utils/src/typesEntry.ts +5 -0
- package/source/packages/scramjet/packages/utils/src/url-watcher.ts +37 -0
- package/source/packages/scramjet/packages/utils/src/version.ts +40 -0
- package/source/packages/scramjet/packages/utils/tsconfig.json +11 -0
- package/source/packages/scramjet/patches/htmlparser2@12.0.0.patch +124 -0
- package/source/packages/scramjet/rspack.config.ts +613 -0
- package/source/packages/scramjet/tsconfig.json +11 -0
- package/source/packages/tracker-protocol/package.json +31 -0
- package/source/packages/tracker-protocol/src/index.ts +745 -0
- package/source/packages/tracker-protocol/tsconfig.json +18 -0
- package/source/pnpm-lock.yaml +12018 -0
- package/source/pnpm-workspace.yaml +31 -0
- package/source/rspack.config.ts +103 -0
- package/source/scripts/update-adblock-assets.mjs +164 -0
- package/third_party/filter-lists/LICENSE-CC-BY-SA-3.0.txt +359 -0
- package/third_party/filter-lists/LICENSE-GPL-3.0.txt +674 -0
- package/third_party/filter-lists/LICENSE-MPL-2.0.txt +375 -0
- package/third_party/filter-lists/README.md +24 -0
- package/third_party/filter-lists/easylist.txt +83088 -0
- package/third_party/filter-lists/easyprivacy.txt +56361 -0
- package/third_party/filter-lists/manifest.json +56 -0
- package/third_party/filter-lists/ublock-filters.txt +10937 -0
- package/third_party/filter-lists/ublock-privacy.txt +3209 -0
- package/third_party/filter-lists/ublock-resources.json +1852 -0
- package/third_party/filter-lists/ublock-unbreak.txt +6026 -0
|
@@ -0,0 +1,1985 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "allocator-api2"
|
|
7
|
+
version = "0.2.21"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "anstream"
|
|
13
|
+
version = "0.6.19"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"anstyle",
|
|
18
|
+
"anstyle-parse",
|
|
19
|
+
"anstyle-query",
|
|
20
|
+
"anstyle-wincon",
|
|
21
|
+
"colorchoice",
|
|
22
|
+
"is_terminal_polyfill",
|
|
23
|
+
"utf8parse",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "anstyle"
|
|
28
|
+
version = "1.0.11"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "anstyle-parse"
|
|
34
|
+
version = "0.2.7"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"utf8parse",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "anstyle-query"
|
|
43
|
+
version = "1.1.3"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"windows-sys",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "anstyle-wincon"
|
|
52
|
+
version = "3.0.9"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"anstyle",
|
|
57
|
+
"once_cell_polyfill",
|
|
58
|
+
"windows-sys",
|
|
59
|
+
]
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "anyhow"
|
|
63
|
+
version = "1.0.100"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "arrayvec"
|
|
69
|
+
version = "0.7.6"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "autocfg"
|
|
75
|
+
version = "1.5.0"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "bitflags"
|
|
81
|
+
version = "2.10.0"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "boa_ast"
|
|
87
|
+
version = "0.20.0"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "2c340fe0f0b267787095cbe35240c6786ff19da63ec7b69367ba338eace8169b"
|
|
90
|
+
dependencies = [
|
|
91
|
+
"bitflags",
|
|
92
|
+
"boa_interner",
|
|
93
|
+
"boa_macros",
|
|
94
|
+
"boa_string",
|
|
95
|
+
"indexmap",
|
|
96
|
+
"num-bigint",
|
|
97
|
+
"rustc-hash",
|
|
98
|
+
]
|
|
99
|
+
|
|
100
|
+
[[package]]
|
|
101
|
+
name = "boa_engine"
|
|
102
|
+
version = "0.20.0"
|
|
103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
104
|
+
checksum = "f620c3f06f51e65c0504ddf04978be1b814ac6586f0b45f6019801ab5efd37f9"
|
|
105
|
+
dependencies = [
|
|
106
|
+
"arrayvec",
|
|
107
|
+
"bitflags",
|
|
108
|
+
"boa_ast",
|
|
109
|
+
"boa_gc",
|
|
110
|
+
"boa_interner",
|
|
111
|
+
"boa_macros",
|
|
112
|
+
"boa_parser",
|
|
113
|
+
"boa_profiler",
|
|
114
|
+
"boa_string",
|
|
115
|
+
"bytemuck",
|
|
116
|
+
"cfg-if",
|
|
117
|
+
"dashmap",
|
|
118
|
+
"fast-float2",
|
|
119
|
+
"hashbrown 0.15.4",
|
|
120
|
+
"icu_normalizer 1.5.0",
|
|
121
|
+
"indexmap",
|
|
122
|
+
"intrusive-collections",
|
|
123
|
+
"itertools",
|
|
124
|
+
"num-bigint",
|
|
125
|
+
"num-integer",
|
|
126
|
+
"num-traits",
|
|
127
|
+
"num_enum",
|
|
128
|
+
"once_cell",
|
|
129
|
+
"pollster",
|
|
130
|
+
"portable-atomic",
|
|
131
|
+
"rand",
|
|
132
|
+
"regress",
|
|
133
|
+
"rustc-hash",
|
|
134
|
+
"ryu-js",
|
|
135
|
+
"serde",
|
|
136
|
+
"serde_json",
|
|
137
|
+
"sptr",
|
|
138
|
+
"static_assertions",
|
|
139
|
+
"tap",
|
|
140
|
+
"thin-vec",
|
|
141
|
+
"thiserror",
|
|
142
|
+
"time",
|
|
143
|
+
]
|
|
144
|
+
|
|
145
|
+
[[package]]
|
|
146
|
+
name = "boa_gc"
|
|
147
|
+
version = "0.20.0"
|
|
148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
149
|
+
checksum = "2425c0b7720d42d73eaa6a883fbb77a5c920da8694964a3d79a67597ac55cce2"
|
|
150
|
+
dependencies = [
|
|
151
|
+
"boa_macros",
|
|
152
|
+
"boa_profiler",
|
|
153
|
+
"boa_string",
|
|
154
|
+
"hashbrown 0.15.4",
|
|
155
|
+
"thin-vec",
|
|
156
|
+
]
|
|
157
|
+
|
|
158
|
+
[[package]]
|
|
159
|
+
name = "boa_interner"
|
|
160
|
+
version = "0.20.0"
|
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
+
checksum = "42407a3b724cfaecde8f7d4af566df4b56af32a2f11f0956f5570bb974e7f749"
|
|
163
|
+
dependencies = [
|
|
164
|
+
"boa_gc",
|
|
165
|
+
"boa_macros",
|
|
166
|
+
"hashbrown 0.15.4",
|
|
167
|
+
"indexmap",
|
|
168
|
+
"once_cell",
|
|
169
|
+
"phf 0.11.3",
|
|
170
|
+
"rustc-hash",
|
|
171
|
+
"static_assertions",
|
|
172
|
+
]
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "boa_macros"
|
|
176
|
+
version = "0.20.0"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "9fd3f870829131332587f607a7ff909f1af5fc523fd1b192db55fbbdf52e8d3c"
|
|
179
|
+
dependencies = [
|
|
180
|
+
"proc-macro2",
|
|
181
|
+
"quote",
|
|
182
|
+
"syn",
|
|
183
|
+
"synstructure",
|
|
184
|
+
]
|
|
185
|
+
|
|
186
|
+
[[package]]
|
|
187
|
+
name = "boa_parser"
|
|
188
|
+
version = "0.20.0"
|
|
189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
+
checksum = "9cc142dac798cdc6e2dbccfddeb50f36d2523bb977a976e19bdb3ae19b740804"
|
|
191
|
+
dependencies = [
|
|
192
|
+
"bitflags",
|
|
193
|
+
"boa_ast",
|
|
194
|
+
"boa_interner",
|
|
195
|
+
"boa_macros",
|
|
196
|
+
"boa_profiler",
|
|
197
|
+
"fast-float2",
|
|
198
|
+
"icu_properties 1.5.1",
|
|
199
|
+
"num-bigint",
|
|
200
|
+
"num-traits",
|
|
201
|
+
"regress",
|
|
202
|
+
"rustc-hash",
|
|
203
|
+
]
|
|
204
|
+
|
|
205
|
+
[[package]]
|
|
206
|
+
name = "boa_profiler"
|
|
207
|
+
version = "0.20.0"
|
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
+
checksum = "4064908e7cdf9b6317179e9b04dcb27f1510c1c144aeab4d0394014f37a0f922"
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "boa_string"
|
|
213
|
+
version = "0.20.0"
|
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
+
checksum = "7debc13fbf7997bf38bf8e9b20f1ad5e2a7d27a900e1f6039fe244ce30f589b5"
|
|
216
|
+
dependencies = [
|
|
217
|
+
"fast-float2",
|
|
218
|
+
"paste",
|
|
219
|
+
"rustc-hash",
|
|
220
|
+
"sptr",
|
|
221
|
+
"static_assertions",
|
|
222
|
+
]
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "bumpalo"
|
|
226
|
+
version = "3.19.0"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
229
|
+
dependencies = [
|
|
230
|
+
"allocator-api2",
|
|
231
|
+
]
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "bytemuck"
|
|
235
|
+
version = "1.23.1"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "5c76a5792e44e4abe34d3abf15636779261d45a7450612059293d1d2cfc63422"
|
|
238
|
+
dependencies = [
|
|
239
|
+
"bytemuck_derive",
|
|
240
|
+
]
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "bytemuck_derive"
|
|
244
|
+
version = "1.9.3"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "7ecc273b49b3205b83d648f0690daa588925572cc5063745bfe547fe7ec8e1a1"
|
|
247
|
+
dependencies = [
|
|
248
|
+
"proc-macro2",
|
|
249
|
+
"quote",
|
|
250
|
+
"syn",
|
|
251
|
+
]
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "bytes"
|
|
255
|
+
version = "1.10.1"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
258
|
+
|
|
259
|
+
[[package]]
|
|
260
|
+
name = "castaway"
|
|
261
|
+
version = "0.2.4"
|
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
+
checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
|
|
264
|
+
dependencies = [
|
|
265
|
+
"rustversion",
|
|
266
|
+
]
|
|
267
|
+
|
|
268
|
+
[[package]]
|
|
269
|
+
name = "cfg-if"
|
|
270
|
+
version = "1.0.1"
|
|
271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
+
checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
|
|
273
|
+
|
|
274
|
+
[[package]]
|
|
275
|
+
name = "clap"
|
|
276
|
+
version = "4.5.51"
|
|
277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
+
checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5"
|
|
279
|
+
dependencies = [
|
|
280
|
+
"clap_builder",
|
|
281
|
+
"clap_derive",
|
|
282
|
+
]
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "clap_builder"
|
|
286
|
+
version = "4.5.51"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a"
|
|
289
|
+
dependencies = [
|
|
290
|
+
"anstream",
|
|
291
|
+
"anstyle",
|
|
292
|
+
"clap_lex",
|
|
293
|
+
"strsim",
|
|
294
|
+
]
|
|
295
|
+
|
|
296
|
+
[[package]]
|
|
297
|
+
name = "clap_derive"
|
|
298
|
+
version = "4.5.49"
|
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
301
|
+
dependencies = [
|
|
302
|
+
"heck",
|
|
303
|
+
"proc-macro2",
|
|
304
|
+
"quote",
|
|
305
|
+
"syn",
|
|
306
|
+
]
|
|
307
|
+
|
|
308
|
+
[[package]]
|
|
309
|
+
name = "clap_lex"
|
|
310
|
+
version = "0.7.5"
|
|
311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
312
|
+
checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
|
|
313
|
+
|
|
314
|
+
[[package]]
|
|
315
|
+
name = "colorchoice"
|
|
316
|
+
version = "1.0.4"
|
|
317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
318
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
319
|
+
|
|
320
|
+
[[package]]
|
|
321
|
+
name = "compact_str"
|
|
322
|
+
version = "0.9.0"
|
|
323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
324
|
+
checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
|
|
325
|
+
dependencies = [
|
|
326
|
+
"castaway",
|
|
327
|
+
"cfg-if",
|
|
328
|
+
"itoa",
|
|
329
|
+
"rustversion",
|
|
330
|
+
"ryu",
|
|
331
|
+
"static_assertions",
|
|
332
|
+
]
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "coverage-macro"
|
|
336
|
+
version = "0.1.0"
|
|
337
|
+
dependencies = [
|
|
338
|
+
"proc-macro2",
|
|
339
|
+
"quote",
|
|
340
|
+
"syn",
|
|
341
|
+
]
|
|
342
|
+
|
|
343
|
+
[[package]]
|
|
344
|
+
name = "cow-utils"
|
|
345
|
+
version = "0.1.3"
|
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
+
checksum = "417bef24afe1460300965a25ff4a24b8b45ad011948302ec221e8a0a81eb2c79"
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "crossbeam-utils"
|
|
351
|
+
version = "0.8.21"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
354
|
+
|
|
355
|
+
[[package]]
|
|
356
|
+
name = "dashmap"
|
|
357
|
+
version = "6.1.0"
|
|
358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
|
+
checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
|
|
360
|
+
dependencies = [
|
|
361
|
+
"cfg-if",
|
|
362
|
+
"crossbeam-utils",
|
|
363
|
+
"hashbrown 0.14.5",
|
|
364
|
+
"lock_api",
|
|
365
|
+
"once_cell",
|
|
366
|
+
"parking_lot_core",
|
|
367
|
+
]
|
|
368
|
+
|
|
369
|
+
[[package]]
|
|
370
|
+
name = "deranged"
|
|
371
|
+
version = "0.4.0"
|
|
372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
373
|
+
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
|
|
374
|
+
dependencies = [
|
|
375
|
+
"powerfmt",
|
|
376
|
+
]
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "displaydoc"
|
|
380
|
+
version = "0.2.5"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
383
|
+
dependencies = [
|
|
384
|
+
"proc-macro2",
|
|
385
|
+
"quote",
|
|
386
|
+
"syn",
|
|
387
|
+
]
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "dragonbox_ecma"
|
|
391
|
+
version = "0.0.5"
|
|
392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
+
checksum = "d742b56656e8b14d63e7ea9806597b1849ae25412584c8adf78c0f67bd985e66"
|
|
394
|
+
|
|
395
|
+
[[package]]
|
|
396
|
+
name = "either"
|
|
397
|
+
version = "1.15.0"
|
|
398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
400
|
+
|
|
401
|
+
[[package]]
|
|
402
|
+
name = "equivalent"
|
|
403
|
+
version = "1.0.2"
|
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "fast-float2"
|
|
409
|
+
version = "0.2.3"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55"
|
|
412
|
+
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "fastrand"
|
|
415
|
+
version = "2.3.0"
|
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
418
|
+
|
|
419
|
+
[[package]]
|
|
420
|
+
name = "foldhash"
|
|
421
|
+
version = "0.1.5"
|
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "form_urlencoded"
|
|
427
|
+
version = "1.2.2"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
430
|
+
dependencies = [
|
|
431
|
+
"percent-encoding",
|
|
432
|
+
]
|
|
433
|
+
|
|
434
|
+
[[package]]
|
|
435
|
+
name = "getrandom"
|
|
436
|
+
version = "0.2.16"
|
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
439
|
+
dependencies = [
|
|
440
|
+
"cfg-if",
|
|
441
|
+
"libc",
|
|
442
|
+
"wasi",
|
|
443
|
+
]
|
|
444
|
+
|
|
445
|
+
[[package]]
|
|
446
|
+
name = "hashbrown"
|
|
447
|
+
version = "0.14.5"
|
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
450
|
+
|
|
451
|
+
[[package]]
|
|
452
|
+
name = "hashbrown"
|
|
453
|
+
version = "0.15.4"
|
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
455
|
+
checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
|
|
456
|
+
dependencies = [
|
|
457
|
+
"allocator-api2",
|
|
458
|
+
"equivalent",
|
|
459
|
+
"foldhash",
|
|
460
|
+
]
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "hashbrown"
|
|
464
|
+
version = "0.16.0"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
|
|
467
|
+
dependencies = [
|
|
468
|
+
"allocator-api2",
|
|
469
|
+
]
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "heck"
|
|
473
|
+
version = "0.5.0"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
476
|
+
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "icu_collections"
|
|
479
|
+
version = "1.5.0"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
|
|
482
|
+
dependencies = [
|
|
483
|
+
"displaydoc",
|
|
484
|
+
"yoke 0.7.5",
|
|
485
|
+
"zerofrom",
|
|
486
|
+
"zerovec 0.10.4",
|
|
487
|
+
]
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "icu_collections"
|
|
491
|
+
version = "2.0.0"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
|
|
494
|
+
dependencies = [
|
|
495
|
+
"displaydoc",
|
|
496
|
+
"potential_utf",
|
|
497
|
+
"yoke 0.8.0",
|
|
498
|
+
"zerofrom",
|
|
499
|
+
"zerovec 0.11.2",
|
|
500
|
+
]
|
|
501
|
+
|
|
502
|
+
[[package]]
|
|
503
|
+
name = "icu_locale_core"
|
|
504
|
+
version = "2.0.0"
|
|
505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
|
+
checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
|
|
507
|
+
dependencies = [
|
|
508
|
+
"displaydoc",
|
|
509
|
+
"litemap 0.8.0",
|
|
510
|
+
"tinystr 0.8.1",
|
|
511
|
+
"writeable 0.6.1",
|
|
512
|
+
"zerovec 0.11.2",
|
|
513
|
+
]
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "icu_locid"
|
|
517
|
+
version = "1.5.0"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
|
|
520
|
+
dependencies = [
|
|
521
|
+
"displaydoc",
|
|
522
|
+
"litemap 0.7.5",
|
|
523
|
+
"tinystr 0.7.6",
|
|
524
|
+
"writeable 0.5.5",
|
|
525
|
+
"zerovec 0.10.4",
|
|
526
|
+
]
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "icu_locid_transform"
|
|
530
|
+
version = "1.5.0"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
|
533
|
+
dependencies = [
|
|
534
|
+
"displaydoc",
|
|
535
|
+
"icu_locid",
|
|
536
|
+
"icu_locid_transform_data",
|
|
537
|
+
"icu_provider 1.5.0",
|
|
538
|
+
"tinystr 0.7.6",
|
|
539
|
+
"zerovec 0.10.4",
|
|
540
|
+
]
|
|
541
|
+
|
|
542
|
+
[[package]]
|
|
543
|
+
name = "icu_locid_transform_data"
|
|
544
|
+
version = "1.5.1"
|
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
546
|
+
checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
|
|
547
|
+
|
|
548
|
+
[[package]]
|
|
549
|
+
name = "icu_normalizer"
|
|
550
|
+
version = "1.5.0"
|
|
551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
+
checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
|
|
553
|
+
dependencies = [
|
|
554
|
+
"displaydoc",
|
|
555
|
+
"icu_collections 1.5.0",
|
|
556
|
+
"icu_normalizer_data 1.5.1",
|
|
557
|
+
"icu_properties 1.5.1",
|
|
558
|
+
"icu_provider 1.5.0",
|
|
559
|
+
"smallvec",
|
|
560
|
+
"utf16_iter",
|
|
561
|
+
"utf8_iter",
|
|
562
|
+
"write16",
|
|
563
|
+
"zerovec 0.10.4",
|
|
564
|
+
]
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "icu_normalizer"
|
|
568
|
+
version = "2.0.0"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
|
|
571
|
+
dependencies = [
|
|
572
|
+
"displaydoc",
|
|
573
|
+
"icu_collections 2.0.0",
|
|
574
|
+
"icu_normalizer_data 2.0.0",
|
|
575
|
+
"icu_properties 2.0.1",
|
|
576
|
+
"icu_provider 2.0.0",
|
|
577
|
+
"smallvec",
|
|
578
|
+
"zerovec 0.11.2",
|
|
579
|
+
]
|
|
580
|
+
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "icu_normalizer_data"
|
|
583
|
+
version = "1.5.1"
|
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
+
checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
|
|
586
|
+
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "icu_normalizer_data"
|
|
589
|
+
version = "2.0.0"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
|
|
592
|
+
|
|
593
|
+
[[package]]
|
|
594
|
+
name = "icu_properties"
|
|
595
|
+
version = "1.5.1"
|
|
596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
|
+
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
|
|
598
|
+
dependencies = [
|
|
599
|
+
"displaydoc",
|
|
600
|
+
"icu_collections 1.5.0",
|
|
601
|
+
"icu_locid_transform",
|
|
602
|
+
"icu_properties_data 1.5.1",
|
|
603
|
+
"icu_provider 1.5.0",
|
|
604
|
+
"tinystr 0.7.6",
|
|
605
|
+
"zerovec 0.10.4",
|
|
606
|
+
]
|
|
607
|
+
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "icu_properties"
|
|
610
|
+
version = "2.0.1"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
|
|
613
|
+
dependencies = [
|
|
614
|
+
"displaydoc",
|
|
615
|
+
"icu_collections 2.0.0",
|
|
616
|
+
"icu_locale_core",
|
|
617
|
+
"icu_properties_data 2.0.1",
|
|
618
|
+
"icu_provider 2.0.0",
|
|
619
|
+
"potential_utf",
|
|
620
|
+
"zerotrie",
|
|
621
|
+
"zerovec 0.11.2",
|
|
622
|
+
]
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "icu_properties_data"
|
|
626
|
+
version = "1.5.1"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
|
|
629
|
+
|
|
630
|
+
[[package]]
|
|
631
|
+
name = "icu_properties_data"
|
|
632
|
+
version = "2.0.1"
|
|
633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
+
checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
|
|
635
|
+
|
|
636
|
+
[[package]]
|
|
637
|
+
name = "icu_provider"
|
|
638
|
+
version = "1.5.0"
|
|
639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
+
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
|
|
641
|
+
dependencies = [
|
|
642
|
+
"displaydoc",
|
|
643
|
+
"icu_locid",
|
|
644
|
+
"icu_provider_macros",
|
|
645
|
+
"stable_deref_trait",
|
|
646
|
+
"tinystr 0.7.6",
|
|
647
|
+
"writeable 0.5.5",
|
|
648
|
+
"yoke 0.7.5",
|
|
649
|
+
"zerofrom",
|
|
650
|
+
"zerovec 0.10.4",
|
|
651
|
+
]
|
|
652
|
+
|
|
653
|
+
[[package]]
|
|
654
|
+
name = "icu_provider"
|
|
655
|
+
version = "2.0.0"
|
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
+
checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
|
|
658
|
+
dependencies = [
|
|
659
|
+
"displaydoc",
|
|
660
|
+
"icu_locale_core",
|
|
661
|
+
"stable_deref_trait",
|
|
662
|
+
"tinystr 0.8.1",
|
|
663
|
+
"writeable 0.6.1",
|
|
664
|
+
"yoke 0.8.0",
|
|
665
|
+
"zerofrom",
|
|
666
|
+
"zerotrie",
|
|
667
|
+
"zerovec 0.11.2",
|
|
668
|
+
]
|
|
669
|
+
|
|
670
|
+
[[package]]
|
|
671
|
+
name = "icu_provider_macros"
|
|
672
|
+
version = "1.5.0"
|
|
673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
674
|
+
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
675
|
+
dependencies = [
|
|
676
|
+
"proc-macro2",
|
|
677
|
+
"quote",
|
|
678
|
+
"syn",
|
|
679
|
+
]
|
|
680
|
+
|
|
681
|
+
[[package]]
|
|
682
|
+
name = "idna"
|
|
683
|
+
version = "1.1.0"
|
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
685
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
686
|
+
dependencies = [
|
|
687
|
+
"idna_adapter",
|
|
688
|
+
"smallvec",
|
|
689
|
+
"utf8_iter",
|
|
690
|
+
]
|
|
691
|
+
|
|
692
|
+
[[package]]
|
|
693
|
+
name = "idna_adapter"
|
|
694
|
+
version = "1.2.1"
|
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
697
|
+
dependencies = [
|
|
698
|
+
"icu_normalizer 2.0.0",
|
|
699
|
+
"icu_properties 2.0.1",
|
|
700
|
+
]
|
|
701
|
+
|
|
702
|
+
[[package]]
|
|
703
|
+
name = "indexmap"
|
|
704
|
+
version = "2.10.0"
|
|
705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
+
checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
|
|
707
|
+
dependencies = [
|
|
708
|
+
"equivalent",
|
|
709
|
+
"hashbrown 0.15.4",
|
|
710
|
+
]
|
|
711
|
+
|
|
712
|
+
[[package]]
|
|
713
|
+
name = "intrusive-collections"
|
|
714
|
+
version = "0.9.7"
|
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
716
|
+
checksum = "189d0897e4cbe8c75efedf3502c18c887b05046e59d28404d4d8e46cbc4d1e86"
|
|
717
|
+
dependencies = [
|
|
718
|
+
"memoffset",
|
|
719
|
+
]
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "is_terminal_polyfill"
|
|
723
|
+
version = "1.70.1"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
|
726
|
+
|
|
727
|
+
[[package]]
|
|
728
|
+
name = "itertools"
|
|
729
|
+
version = "0.13.0"
|
|
730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
732
|
+
dependencies = [
|
|
733
|
+
"either",
|
|
734
|
+
]
|
|
735
|
+
|
|
736
|
+
[[package]]
|
|
737
|
+
name = "itoa"
|
|
738
|
+
version = "1.0.15"
|
|
739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
740
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
741
|
+
|
|
742
|
+
[[package]]
|
|
743
|
+
name = "js"
|
|
744
|
+
version = "0.1.0"
|
|
745
|
+
dependencies = [
|
|
746
|
+
"coverage-macro",
|
|
747
|
+
"oxc",
|
|
748
|
+
"smallvec",
|
|
749
|
+
"thiserror",
|
|
750
|
+
"transform",
|
|
751
|
+
]
|
|
752
|
+
|
|
753
|
+
[[package]]
|
|
754
|
+
name = "js-sys"
|
|
755
|
+
version = "0.3.82"
|
|
756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
+
checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
|
|
758
|
+
dependencies = [
|
|
759
|
+
"once_cell",
|
|
760
|
+
"wasm-bindgen",
|
|
761
|
+
]
|
|
762
|
+
|
|
763
|
+
[[package]]
|
|
764
|
+
name = "libc"
|
|
765
|
+
version = "0.2.174"
|
|
766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
+
checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
|
|
768
|
+
|
|
769
|
+
[[package]]
|
|
770
|
+
name = "litemap"
|
|
771
|
+
version = "0.7.5"
|
|
772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
+
checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
|
|
774
|
+
|
|
775
|
+
[[package]]
|
|
776
|
+
name = "litemap"
|
|
777
|
+
version = "0.8.0"
|
|
778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
+
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
|
|
780
|
+
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "lock_api"
|
|
783
|
+
version = "0.4.13"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
|
|
786
|
+
dependencies = [
|
|
787
|
+
"autocfg",
|
|
788
|
+
"scopeguard",
|
|
789
|
+
]
|
|
790
|
+
|
|
791
|
+
[[package]]
|
|
792
|
+
name = "memchr"
|
|
793
|
+
version = "2.7.5"
|
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
|
796
|
+
|
|
797
|
+
[[package]]
|
|
798
|
+
name = "memoffset"
|
|
799
|
+
version = "0.9.1"
|
|
800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
801
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
802
|
+
dependencies = [
|
|
803
|
+
"autocfg",
|
|
804
|
+
]
|
|
805
|
+
|
|
806
|
+
[[package]]
|
|
807
|
+
name = "native"
|
|
808
|
+
version = "0.1.0"
|
|
809
|
+
dependencies = [
|
|
810
|
+
"anyhow",
|
|
811
|
+
"boa_engine",
|
|
812
|
+
"bytes",
|
|
813
|
+
"clap",
|
|
814
|
+
"js",
|
|
815
|
+
"oxc",
|
|
816
|
+
"url",
|
|
817
|
+
"urlencoding",
|
|
818
|
+
]
|
|
819
|
+
|
|
820
|
+
[[package]]
|
|
821
|
+
name = "nonmax"
|
|
822
|
+
version = "0.5.5"
|
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
+
checksum = "610a5acd306ec67f907abe5567859a3c693fb9886eb1f012ab8f2a47bef3db51"
|
|
825
|
+
|
|
826
|
+
[[package]]
|
|
827
|
+
name = "num-bigint"
|
|
828
|
+
version = "0.4.6"
|
|
829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
831
|
+
dependencies = [
|
|
832
|
+
"num-integer",
|
|
833
|
+
"num-traits",
|
|
834
|
+
"serde",
|
|
835
|
+
]
|
|
836
|
+
|
|
837
|
+
[[package]]
|
|
838
|
+
name = "num-conv"
|
|
839
|
+
version = "0.1.0"
|
|
840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
841
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
842
|
+
|
|
843
|
+
[[package]]
|
|
844
|
+
name = "num-integer"
|
|
845
|
+
version = "0.1.46"
|
|
846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
848
|
+
dependencies = [
|
|
849
|
+
"num-traits",
|
|
850
|
+
]
|
|
851
|
+
|
|
852
|
+
[[package]]
|
|
853
|
+
name = "num-traits"
|
|
854
|
+
version = "0.2.19"
|
|
855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
856
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
857
|
+
dependencies = [
|
|
858
|
+
"autocfg",
|
|
859
|
+
]
|
|
860
|
+
|
|
861
|
+
[[package]]
|
|
862
|
+
name = "num_enum"
|
|
863
|
+
version = "0.7.4"
|
|
864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
+
checksum = "a973b4e44ce6cad84ce69d797acf9a044532e4184c4f267913d1b546a0727b7a"
|
|
866
|
+
dependencies = [
|
|
867
|
+
"num_enum_derive",
|
|
868
|
+
"rustversion",
|
|
869
|
+
]
|
|
870
|
+
|
|
871
|
+
[[package]]
|
|
872
|
+
name = "num_enum_derive"
|
|
873
|
+
version = "0.7.4"
|
|
874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
875
|
+
checksum = "77e878c846a8abae00dd069496dbe8751b16ac1c3d6bd2a7283a938e8228f90d"
|
|
876
|
+
dependencies = [
|
|
877
|
+
"proc-macro-crate",
|
|
878
|
+
"proc-macro2",
|
|
879
|
+
"quote",
|
|
880
|
+
"syn",
|
|
881
|
+
]
|
|
882
|
+
|
|
883
|
+
[[package]]
|
|
884
|
+
name = "num_threads"
|
|
885
|
+
version = "0.1.7"
|
|
886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
+
checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
|
|
888
|
+
dependencies = [
|
|
889
|
+
"libc",
|
|
890
|
+
]
|
|
891
|
+
|
|
892
|
+
[[package]]
|
|
893
|
+
name = "once_cell"
|
|
894
|
+
version = "1.21.3"
|
|
895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
897
|
+
|
|
898
|
+
[[package]]
|
|
899
|
+
name = "once_cell_polyfill"
|
|
900
|
+
version = "1.70.1"
|
|
901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
902
|
+
checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
|
|
903
|
+
|
|
904
|
+
[[package]]
|
|
905
|
+
name = "owo-colors"
|
|
906
|
+
version = "4.2.2"
|
|
907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
+
checksum = "48dd4f4a2c8405440fd0462561f0e5806bd0f77e86f51c761481bdd4018b545e"
|
|
909
|
+
|
|
910
|
+
[[package]]
|
|
911
|
+
name = "oxc"
|
|
912
|
+
version = "0.95.0"
|
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
+
checksum = "8ca2b36d3a7519a1aa606ecdb2d48f01bcdaba810d0a74881c9aebb41d8bec42"
|
|
915
|
+
dependencies = [
|
|
916
|
+
"oxc_allocator",
|
|
917
|
+
"oxc_ast",
|
|
918
|
+
"oxc_ast_visit",
|
|
919
|
+
"oxc_diagnostics",
|
|
920
|
+
"oxc_parser",
|
|
921
|
+
"oxc_regular_expression",
|
|
922
|
+
"oxc_span",
|
|
923
|
+
"oxc_syntax",
|
|
924
|
+
]
|
|
925
|
+
|
|
926
|
+
[[package]]
|
|
927
|
+
name = "oxc-miette"
|
|
928
|
+
version = "2.5.1"
|
|
929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
+
checksum = "5c42cefdcbebec6b0b72229ac0e02261a6770cb7ba39ccc5475a856164066db1"
|
|
931
|
+
dependencies = [
|
|
932
|
+
"cfg-if",
|
|
933
|
+
"owo-colors",
|
|
934
|
+
"oxc-miette-derive",
|
|
935
|
+
"textwrap",
|
|
936
|
+
"thiserror",
|
|
937
|
+
"unicode-segmentation",
|
|
938
|
+
"unicode-width",
|
|
939
|
+
]
|
|
940
|
+
|
|
941
|
+
[[package]]
|
|
942
|
+
name = "oxc-miette-derive"
|
|
943
|
+
version = "2.5.1"
|
|
944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
945
|
+
checksum = "05bbaa5b6b98826bb62b164406f703bee72c5287af9986f9c863fa8ea992b476"
|
|
946
|
+
dependencies = [
|
|
947
|
+
"proc-macro2",
|
|
948
|
+
"quote",
|
|
949
|
+
"syn",
|
|
950
|
+
]
|
|
951
|
+
|
|
952
|
+
[[package]]
|
|
953
|
+
name = "oxc_allocator"
|
|
954
|
+
version = "0.95.0"
|
|
955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
956
|
+
checksum = "433214c659b860685d987ca25a523a544d35ebf87ee3658a942fd1c664cfa49b"
|
|
957
|
+
dependencies = [
|
|
958
|
+
"allocator-api2",
|
|
959
|
+
"bumpalo",
|
|
960
|
+
"hashbrown 0.16.0",
|
|
961
|
+
"oxc_data_structures",
|
|
962
|
+
"rustc-hash",
|
|
963
|
+
]
|
|
964
|
+
|
|
965
|
+
[[package]]
|
|
966
|
+
name = "oxc_ast"
|
|
967
|
+
version = "0.95.0"
|
|
968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
+
checksum = "0e78ea25d23521092edcd509198635dd0bd96df7fb71349bcd8087bb8f6a615d"
|
|
970
|
+
dependencies = [
|
|
971
|
+
"bitflags",
|
|
972
|
+
"oxc_allocator",
|
|
973
|
+
"oxc_ast_macros",
|
|
974
|
+
"oxc_data_structures",
|
|
975
|
+
"oxc_diagnostics",
|
|
976
|
+
"oxc_estree",
|
|
977
|
+
"oxc_regular_expression",
|
|
978
|
+
"oxc_span",
|
|
979
|
+
"oxc_syntax",
|
|
980
|
+
]
|
|
981
|
+
|
|
982
|
+
[[package]]
|
|
983
|
+
name = "oxc_ast_macros"
|
|
984
|
+
version = "0.95.0"
|
|
985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
986
|
+
checksum = "d3f29bf83925451a7ebbd30d3ff449414cc230c9b63aba70487c2ca74ea1e3ed"
|
|
987
|
+
dependencies = [
|
|
988
|
+
"phf 0.13.1",
|
|
989
|
+
"proc-macro2",
|
|
990
|
+
"quote",
|
|
991
|
+
"syn",
|
|
992
|
+
]
|
|
993
|
+
|
|
994
|
+
[[package]]
|
|
995
|
+
name = "oxc_ast_visit"
|
|
996
|
+
version = "0.95.0"
|
|
997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
998
|
+
checksum = "808862f42c9331954cf187261d6a48dbf471ccbe60b6a35f6b1056c11f32e95b"
|
|
999
|
+
dependencies = [
|
|
1000
|
+
"oxc_allocator",
|
|
1001
|
+
"oxc_ast",
|
|
1002
|
+
"oxc_span",
|
|
1003
|
+
"oxc_syntax",
|
|
1004
|
+
]
|
|
1005
|
+
|
|
1006
|
+
[[package]]
|
|
1007
|
+
name = "oxc_data_structures"
|
|
1008
|
+
version = "0.95.0"
|
|
1009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1010
|
+
checksum = "dd090988aa69c1e394f424289abb9bb1281448a072419ca556a07228ad36b854"
|
|
1011
|
+
|
|
1012
|
+
[[package]]
|
|
1013
|
+
name = "oxc_diagnostics"
|
|
1014
|
+
version = "0.95.0"
|
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
+
checksum = "9b8a09558d38ee7f23faf0249cdb37b5b26f53a7375941f8636c41c661b283ce"
|
|
1017
|
+
dependencies = [
|
|
1018
|
+
"cow-utils",
|
|
1019
|
+
"oxc-miette",
|
|
1020
|
+
"percent-encoding",
|
|
1021
|
+
]
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "oxc_ecmascript"
|
|
1025
|
+
version = "0.95.0"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "c0002ece1cc266aa6654913d39cf552b0cf501afce9d953b87c283dfcd307266"
|
|
1028
|
+
dependencies = [
|
|
1029
|
+
"cow-utils",
|
|
1030
|
+
"num-bigint",
|
|
1031
|
+
"num-traits",
|
|
1032
|
+
"oxc_allocator",
|
|
1033
|
+
"oxc_ast",
|
|
1034
|
+
"oxc_span",
|
|
1035
|
+
"oxc_syntax",
|
|
1036
|
+
]
|
|
1037
|
+
|
|
1038
|
+
[[package]]
|
|
1039
|
+
name = "oxc_estree"
|
|
1040
|
+
version = "0.95.0"
|
|
1041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1042
|
+
checksum = "af85b24b7e10bf0ccb252f16d38492f51236c1ba146f62013993667cbf7fa649"
|
|
1043
|
+
|
|
1044
|
+
[[package]]
|
|
1045
|
+
name = "oxc_index"
|
|
1046
|
+
version = "4.1.0"
|
|
1047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1048
|
+
checksum = "eb3e6120999627ec9703025eab7c9f410ebb7e95557632a8902ca48210416c2b"
|
|
1049
|
+
dependencies = [
|
|
1050
|
+
"nonmax",
|
|
1051
|
+
"serde",
|
|
1052
|
+
]
|
|
1053
|
+
|
|
1054
|
+
[[package]]
|
|
1055
|
+
name = "oxc_parser"
|
|
1056
|
+
version = "0.95.0"
|
|
1057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1058
|
+
checksum = "fb730ab93ff23bbc471ef7109f847afa709bb284dd52a5d3366283d724858158"
|
|
1059
|
+
dependencies = [
|
|
1060
|
+
"bitflags",
|
|
1061
|
+
"cow-utils",
|
|
1062
|
+
"memchr",
|
|
1063
|
+
"num-bigint",
|
|
1064
|
+
"num-traits",
|
|
1065
|
+
"oxc_allocator",
|
|
1066
|
+
"oxc_ast",
|
|
1067
|
+
"oxc_data_structures",
|
|
1068
|
+
"oxc_diagnostics",
|
|
1069
|
+
"oxc_ecmascript",
|
|
1070
|
+
"oxc_regular_expression",
|
|
1071
|
+
"oxc_span",
|
|
1072
|
+
"oxc_syntax",
|
|
1073
|
+
"rustc-hash",
|
|
1074
|
+
"seq-macro",
|
|
1075
|
+
]
|
|
1076
|
+
|
|
1077
|
+
[[package]]
|
|
1078
|
+
name = "oxc_regular_expression"
|
|
1079
|
+
version = "0.95.0"
|
|
1080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
+
checksum = "27bafc3035e3b0fe555ae56f7bbc108a7ee520b0858250ba16d197e44ca83746"
|
|
1082
|
+
dependencies = [
|
|
1083
|
+
"bitflags",
|
|
1084
|
+
"oxc_allocator",
|
|
1085
|
+
"oxc_ast_macros",
|
|
1086
|
+
"oxc_diagnostics",
|
|
1087
|
+
"oxc_span",
|
|
1088
|
+
"phf 0.13.1",
|
|
1089
|
+
"rustc-hash",
|
|
1090
|
+
"unicode-id-start",
|
|
1091
|
+
]
|
|
1092
|
+
|
|
1093
|
+
[[package]]
|
|
1094
|
+
name = "oxc_span"
|
|
1095
|
+
version = "0.95.0"
|
|
1096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1097
|
+
checksum = "71243fe1ece27f71a6be5e2ab11d051792eeb578f3b056d7c9bbe82ec8043bf3"
|
|
1098
|
+
dependencies = [
|
|
1099
|
+
"compact_str",
|
|
1100
|
+
"oxc-miette",
|
|
1101
|
+
"oxc_allocator",
|
|
1102
|
+
"oxc_ast_macros",
|
|
1103
|
+
"oxc_estree",
|
|
1104
|
+
]
|
|
1105
|
+
|
|
1106
|
+
[[package]]
|
|
1107
|
+
name = "oxc_syntax"
|
|
1108
|
+
version = "0.95.0"
|
|
1109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1110
|
+
checksum = "93c99e555ed497111004a71fb2aa6f8fb90b0d3e2733aceeb035e24701d69634"
|
|
1111
|
+
dependencies = [
|
|
1112
|
+
"bitflags",
|
|
1113
|
+
"cow-utils",
|
|
1114
|
+
"dragonbox_ecma",
|
|
1115
|
+
"nonmax",
|
|
1116
|
+
"oxc_allocator",
|
|
1117
|
+
"oxc_ast_macros",
|
|
1118
|
+
"oxc_data_structures",
|
|
1119
|
+
"oxc_estree",
|
|
1120
|
+
"oxc_index",
|
|
1121
|
+
"oxc_span",
|
|
1122
|
+
"phf 0.13.1",
|
|
1123
|
+
"unicode-id-start",
|
|
1124
|
+
]
|
|
1125
|
+
|
|
1126
|
+
[[package]]
|
|
1127
|
+
name = "parking_lot_core"
|
|
1128
|
+
version = "0.9.11"
|
|
1129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1130
|
+
checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
|
|
1131
|
+
dependencies = [
|
|
1132
|
+
"cfg-if",
|
|
1133
|
+
"libc",
|
|
1134
|
+
"redox_syscall",
|
|
1135
|
+
"smallvec",
|
|
1136
|
+
"windows-targets",
|
|
1137
|
+
]
|
|
1138
|
+
|
|
1139
|
+
[[package]]
|
|
1140
|
+
name = "paste"
|
|
1141
|
+
version = "1.0.15"
|
|
1142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1143
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1144
|
+
|
|
1145
|
+
[[package]]
|
|
1146
|
+
name = "percent-encoding"
|
|
1147
|
+
version = "2.3.2"
|
|
1148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1150
|
+
|
|
1151
|
+
[[package]]
|
|
1152
|
+
name = "phf"
|
|
1153
|
+
version = "0.11.3"
|
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
1156
|
+
dependencies = [
|
|
1157
|
+
"phf_macros 0.11.3",
|
|
1158
|
+
"phf_shared 0.11.3",
|
|
1159
|
+
]
|
|
1160
|
+
|
|
1161
|
+
[[package]]
|
|
1162
|
+
name = "phf"
|
|
1163
|
+
version = "0.13.1"
|
|
1164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
|
+
checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
|
|
1166
|
+
dependencies = [
|
|
1167
|
+
"phf_macros 0.13.1",
|
|
1168
|
+
"phf_shared 0.13.1",
|
|
1169
|
+
"serde",
|
|
1170
|
+
]
|
|
1171
|
+
|
|
1172
|
+
[[package]]
|
|
1173
|
+
name = "phf_generator"
|
|
1174
|
+
version = "0.11.3"
|
|
1175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
1177
|
+
dependencies = [
|
|
1178
|
+
"phf_shared 0.11.3",
|
|
1179
|
+
"rand",
|
|
1180
|
+
]
|
|
1181
|
+
|
|
1182
|
+
[[package]]
|
|
1183
|
+
name = "phf_generator"
|
|
1184
|
+
version = "0.13.1"
|
|
1185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1186
|
+
checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
|
|
1187
|
+
dependencies = [
|
|
1188
|
+
"fastrand",
|
|
1189
|
+
"phf_shared 0.13.1",
|
|
1190
|
+
]
|
|
1191
|
+
|
|
1192
|
+
[[package]]
|
|
1193
|
+
name = "phf_macros"
|
|
1194
|
+
version = "0.11.3"
|
|
1195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1196
|
+
checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
|
|
1197
|
+
dependencies = [
|
|
1198
|
+
"phf_generator 0.11.3",
|
|
1199
|
+
"phf_shared 0.11.3",
|
|
1200
|
+
"proc-macro2",
|
|
1201
|
+
"quote",
|
|
1202
|
+
"syn",
|
|
1203
|
+
]
|
|
1204
|
+
|
|
1205
|
+
[[package]]
|
|
1206
|
+
name = "phf_macros"
|
|
1207
|
+
version = "0.13.1"
|
|
1208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
+
checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
|
|
1210
|
+
dependencies = [
|
|
1211
|
+
"phf_generator 0.13.1",
|
|
1212
|
+
"phf_shared 0.13.1",
|
|
1213
|
+
"proc-macro2",
|
|
1214
|
+
"quote",
|
|
1215
|
+
"syn",
|
|
1216
|
+
]
|
|
1217
|
+
|
|
1218
|
+
[[package]]
|
|
1219
|
+
name = "phf_shared"
|
|
1220
|
+
version = "0.11.3"
|
|
1221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
1223
|
+
dependencies = [
|
|
1224
|
+
"siphasher",
|
|
1225
|
+
]
|
|
1226
|
+
|
|
1227
|
+
[[package]]
|
|
1228
|
+
name = "phf_shared"
|
|
1229
|
+
version = "0.13.1"
|
|
1230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1231
|
+
checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
|
|
1232
|
+
dependencies = [
|
|
1233
|
+
"siphasher",
|
|
1234
|
+
]
|
|
1235
|
+
|
|
1236
|
+
[[package]]
|
|
1237
|
+
name = "pollster"
|
|
1238
|
+
version = "0.4.0"
|
|
1239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1240
|
+
checksum = "2f3a9f18d041e6d0e102a0a46750538147e5e8992d3b4873aaafee2520b00ce3"
|
|
1241
|
+
|
|
1242
|
+
[[package]]
|
|
1243
|
+
name = "portable-atomic"
|
|
1244
|
+
version = "1.11.1"
|
|
1245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1246
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
1247
|
+
|
|
1248
|
+
[[package]]
|
|
1249
|
+
name = "potential_utf"
|
|
1250
|
+
version = "0.1.2"
|
|
1251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1252
|
+
checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
|
|
1253
|
+
dependencies = [
|
|
1254
|
+
"zerovec 0.11.2",
|
|
1255
|
+
]
|
|
1256
|
+
|
|
1257
|
+
[[package]]
|
|
1258
|
+
name = "powerfmt"
|
|
1259
|
+
version = "0.2.0"
|
|
1260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1261
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1262
|
+
|
|
1263
|
+
[[package]]
|
|
1264
|
+
name = "ppv-lite86"
|
|
1265
|
+
version = "0.2.21"
|
|
1266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1267
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1268
|
+
dependencies = [
|
|
1269
|
+
"zerocopy",
|
|
1270
|
+
]
|
|
1271
|
+
|
|
1272
|
+
[[package]]
|
|
1273
|
+
name = "proc-macro-crate"
|
|
1274
|
+
version = "3.3.0"
|
|
1275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1276
|
+
checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
|
|
1277
|
+
dependencies = [
|
|
1278
|
+
"toml_edit",
|
|
1279
|
+
]
|
|
1280
|
+
|
|
1281
|
+
[[package]]
|
|
1282
|
+
name = "proc-macro2"
|
|
1283
|
+
version = "1.0.95"
|
|
1284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
|
1286
|
+
dependencies = [
|
|
1287
|
+
"unicode-ident",
|
|
1288
|
+
]
|
|
1289
|
+
|
|
1290
|
+
[[package]]
|
|
1291
|
+
name = "quote"
|
|
1292
|
+
version = "1.0.40"
|
|
1293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1294
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
1295
|
+
dependencies = [
|
|
1296
|
+
"proc-macro2",
|
|
1297
|
+
]
|
|
1298
|
+
|
|
1299
|
+
[[package]]
|
|
1300
|
+
name = "rand"
|
|
1301
|
+
version = "0.8.5"
|
|
1302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1303
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
1304
|
+
dependencies = [
|
|
1305
|
+
"libc",
|
|
1306
|
+
"rand_chacha",
|
|
1307
|
+
"rand_core",
|
|
1308
|
+
]
|
|
1309
|
+
|
|
1310
|
+
[[package]]
|
|
1311
|
+
name = "rand_chacha"
|
|
1312
|
+
version = "0.3.1"
|
|
1313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1314
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1315
|
+
dependencies = [
|
|
1316
|
+
"ppv-lite86",
|
|
1317
|
+
"rand_core",
|
|
1318
|
+
]
|
|
1319
|
+
|
|
1320
|
+
[[package]]
|
|
1321
|
+
name = "rand_core"
|
|
1322
|
+
version = "0.6.4"
|
|
1323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1324
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1325
|
+
dependencies = [
|
|
1326
|
+
"getrandom",
|
|
1327
|
+
]
|
|
1328
|
+
|
|
1329
|
+
[[package]]
|
|
1330
|
+
name = "redox_syscall"
|
|
1331
|
+
version = "0.5.13"
|
|
1332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1333
|
+
checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6"
|
|
1334
|
+
dependencies = [
|
|
1335
|
+
"bitflags",
|
|
1336
|
+
]
|
|
1337
|
+
|
|
1338
|
+
[[package]]
|
|
1339
|
+
name = "regress"
|
|
1340
|
+
version = "0.10.4"
|
|
1341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1342
|
+
checksum = "145bb27393fe455dd64d6cbc8d059adfa392590a45eadf079c01b11857e7b010"
|
|
1343
|
+
dependencies = [
|
|
1344
|
+
"hashbrown 0.15.4",
|
|
1345
|
+
"memchr",
|
|
1346
|
+
]
|
|
1347
|
+
|
|
1348
|
+
[[package]]
|
|
1349
|
+
name = "rustc-hash"
|
|
1350
|
+
version = "2.1.1"
|
|
1351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
1353
|
+
|
|
1354
|
+
[[package]]
|
|
1355
|
+
name = "rustversion"
|
|
1356
|
+
version = "1.0.21"
|
|
1357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1358
|
+
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
|
|
1359
|
+
|
|
1360
|
+
[[package]]
|
|
1361
|
+
name = "ryu"
|
|
1362
|
+
version = "1.0.20"
|
|
1363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1364
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
1365
|
+
|
|
1366
|
+
[[package]]
|
|
1367
|
+
name = "ryu-js"
|
|
1368
|
+
version = "1.0.2"
|
|
1369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1370
|
+
checksum = "dd29631678d6fb0903b69223673e122c32e9ae559d0960a38d574695ebc0ea15"
|
|
1371
|
+
|
|
1372
|
+
[[package]]
|
|
1373
|
+
name = "scopeguard"
|
|
1374
|
+
version = "1.2.0"
|
|
1375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1376
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1377
|
+
|
|
1378
|
+
[[package]]
|
|
1379
|
+
name = "seq-macro"
|
|
1380
|
+
version = "0.3.6"
|
|
1381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1382
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
1383
|
+
|
|
1384
|
+
[[package]]
|
|
1385
|
+
name = "serde"
|
|
1386
|
+
version = "1.0.219"
|
|
1387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1388
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
|
1389
|
+
dependencies = [
|
|
1390
|
+
"serde_derive",
|
|
1391
|
+
]
|
|
1392
|
+
|
|
1393
|
+
[[package]]
|
|
1394
|
+
name = "serde_derive"
|
|
1395
|
+
version = "1.0.219"
|
|
1396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1397
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
1398
|
+
dependencies = [
|
|
1399
|
+
"proc-macro2",
|
|
1400
|
+
"quote",
|
|
1401
|
+
"syn",
|
|
1402
|
+
]
|
|
1403
|
+
|
|
1404
|
+
[[package]]
|
|
1405
|
+
name = "serde_json"
|
|
1406
|
+
version = "1.0.141"
|
|
1407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1408
|
+
checksum = "30b9eff21ebe718216c6ec64e1d9ac57087aad11efc64e32002bce4a0d4c03d3"
|
|
1409
|
+
dependencies = [
|
|
1410
|
+
"itoa",
|
|
1411
|
+
"memchr",
|
|
1412
|
+
"ryu",
|
|
1413
|
+
"serde",
|
|
1414
|
+
]
|
|
1415
|
+
|
|
1416
|
+
[[package]]
|
|
1417
|
+
name = "siphasher"
|
|
1418
|
+
version = "1.0.1"
|
|
1419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1420
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
1421
|
+
|
|
1422
|
+
[[package]]
|
|
1423
|
+
name = "smallvec"
|
|
1424
|
+
version = "1.15.1"
|
|
1425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1426
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1427
|
+
|
|
1428
|
+
[[package]]
|
|
1429
|
+
name = "smawk"
|
|
1430
|
+
version = "0.3.2"
|
|
1431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1432
|
+
checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
|
|
1433
|
+
|
|
1434
|
+
[[package]]
|
|
1435
|
+
name = "sptr"
|
|
1436
|
+
version = "0.3.2"
|
|
1437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1438
|
+
checksum = "3b9b39299b249ad65f3b7e96443bad61c02ca5cd3589f46cb6d610a0fd6c0d6a"
|
|
1439
|
+
|
|
1440
|
+
[[package]]
|
|
1441
|
+
name = "stable_deref_trait"
|
|
1442
|
+
version = "1.2.0"
|
|
1443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
1445
|
+
|
|
1446
|
+
[[package]]
|
|
1447
|
+
name = "static_assertions"
|
|
1448
|
+
version = "1.1.0"
|
|
1449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1450
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
1451
|
+
|
|
1452
|
+
[[package]]
|
|
1453
|
+
name = "strsim"
|
|
1454
|
+
version = "0.11.1"
|
|
1455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1456
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1457
|
+
|
|
1458
|
+
[[package]]
|
|
1459
|
+
name = "syn"
|
|
1460
|
+
version = "2.0.104"
|
|
1461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1462
|
+
checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
|
|
1463
|
+
dependencies = [
|
|
1464
|
+
"proc-macro2",
|
|
1465
|
+
"quote",
|
|
1466
|
+
"unicode-ident",
|
|
1467
|
+
]
|
|
1468
|
+
|
|
1469
|
+
[[package]]
|
|
1470
|
+
name = "synstructure"
|
|
1471
|
+
version = "0.13.2"
|
|
1472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1473
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1474
|
+
dependencies = [
|
|
1475
|
+
"proc-macro2",
|
|
1476
|
+
"quote",
|
|
1477
|
+
"syn",
|
|
1478
|
+
]
|
|
1479
|
+
|
|
1480
|
+
[[package]]
|
|
1481
|
+
name = "tap"
|
|
1482
|
+
version = "1.0.1"
|
|
1483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1484
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
1485
|
+
|
|
1486
|
+
[[package]]
|
|
1487
|
+
name = "textwrap"
|
|
1488
|
+
version = "0.16.2"
|
|
1489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1490
|
+
checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
|
|
1491
|
+
dependencies = [
|
|
1492
|
+
"smawk",
|
|
1493
|
+
"unicode-linebreak",
|
|
1494
|
+
"unicode-width",
|
|
1495
|
+
]
|
|
1496
|
+
|
|
1497
|
+
[[package]]
|
|
1498
|
+
name = "thin-vec"
|
|
1499
|
+
version = "0.2.14"
|
|
1500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1501
|
+
checksum = "144f754d318415ac792f9d69fc87abbbfc043ce2ef041c60f16ad828f638717d"
|
|
1502
|
+
|
|
1503
|
+
[[package]]
|
|
1504
|
+
name = "thiserror"
|
|
1505
|
+
version = "2.0.17"
|
|
1506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1507
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
1508
|
+
dependencies = [
|
|
1509
|
+
"thiserror-impl",
|
|
1510
|
+
]
|
|
1511
|
+
|
|
1512
|
+
[[package]]
|
|
1513
|
+
name = "thiserror-impl"
|
|
1514
|
+
version = "2.0.17"
|
|
1515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1516
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
1517
|
+
dependencies = [
|
|
1518
|
+
"proc-macro2",
|
|
1519
|
+
"quote",
|
|
1520
|
+
"syn",
|
|
1521
|
+
]
|
|
1522
|
+
|
|
1523
|
+
[[package]]
|
|
1524
|
+
name = "time"
|
|
1525
|
+
version = "0.3.41"
|
|
1526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1527
|
+
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
|
|
1528
|
+
dependencies = [
|
|
1529
|
+
"deranged",
|
|
1530
|
+
"itoa",
|
|
1531
|
+
"js-sys",
|
|
1532
|
+
"libc",
|
|
1533
|
+
"num-conv",
|
|
1534
|
+
"num_threads",
|
|
1535
|
+
"powerfmt",
|
|
1536
|
+
"serde",
|
|
1537
|
+
"time-core",
|
|
1538
|
+
"time-macros",
|
|
1539
|
+
]
|
|
1540
|
+
|
|
1541
|
+
[[package]]
|
|
1542
|
+
name = "time-core"
|
|
1543
|
+
version = "0.1.4"
|
|
1544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1545
|
+
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
|
|
1546
|
+
|
|
1547
|
+
[[package]]
|
|
1548
|
+
name = "time-macros"
|
|
1549
|
+
version = "0.2.22"
|
|
1550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1551
|
+
checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
|
|
1552
|
+
dependencies = [
|
|
1553
|
+
"num-conv",
|
|
1554
|
+
"time-core",
|
|
1555
|
+
]
|
|
1556
|
+
|
|
1557
|
+
[[package]]
|
|
1558
|
+
name = "tinystr"
|
|
1559
|
+
version = "0.7.6"
|
|
1560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1561
|
+
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
|
|
1562
|
+
dependencies = [
|
|
1563
|
+
"displaydoc",
|
|
1564
|
+
"zerovec 0.10.4",
|
|
1565
|
+
]
|
|
1566
|
+
|
|
1567
|
+
[[package]]
|
|
1568
|
+
name = "tinystr"
|
|
1569
|
+
version = "0.8.1"
|
|
1570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1571
|
+
checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
|
|
1572
|
+
dependencies = [
|
|
1573
|
+
"displaydoc",
|
|
1574
|
+
"zerovec 0.11.2",
|
|
1575
|
+
]
|
|
1576
|
+
|
|
1577
|
+
[[package]]
|
|
1578
|
+
name = "toml_datetime"
|
|
1579
|
+
version = "0.6.11"
|
|
1580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1581
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
1582
|
+
|
|
1583
|
+
[[package]]
|
|
1584
|
+
name = "toml_edit"
|
|
1585
|
+
version = "0.22.27"
|
|
1586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1587
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
1588
|
+
dependencies = [
|
|
1589
|
+
"indexmap",
|
|
1590
|
+
"toml_datetime",
|
|
1591
|
+
"winnow",
|
|
1592
|
+
]
|
|
1593
|
+
|
|
1594
|
+
[[package]]
|
|
1595
|
+
name = "transform"
|
|
1596
|
+
version = "0.1.0"
|
|
1597
|
+
dependencies = [
|
|
1598
|
+
"itoa",
|
|
1599
|
+
"oxc",
|
|
1600
|
+
"smallvec",
|
|
1601
|
+
"thiserror",
|
|
1602
|
+
]
|
|
1603
|
+
|
|
1604
|
+
[[package]]
|
|
1605
|
+
name = "unicode-id-start"
|
|
1606
|
+
version = "1.3.1"
|
|
1607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1608
|
+
checksum = "2f322b60f6b9736017344fa0635d64be2f458fbc04eef65f6be22976dd1ffd5b"
|
|
1609
|
+
|
|
1610
|
+
[[package]]
|
|
1611
|
+
name = "unicode-ident"
|
|
1612
|
+
version = "1.0.18"
|
|
1613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1614
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
1615
|
+
|
|
1616
|
+
[[package]]
|
|
1617
|
+
name = "unicode-linebreak"
|
|
1618
|
+
version = "0.1.5"
|
|
1619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1620
|
+
checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
|
|
1621
|
+
|
|
1622
|
+
[[package]]
|
|
1623
|
+
name = "unicode-segmentation"
|
|
1624
|
+
version = "1.12.0"
|
|
1625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1626
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
1627
|
+
|
|
1628
|
+
[[package]]
|
|
1629
|
+
name = "unicode-width"
|
|
1630
|
+
version = "0.2.1"
|
|
1631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1632
|
+
checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
|
|
1633
|
+
|
|
1634
|
+
[[package]]
|
|
1635
|
+
name = "url"
|
|
1636
|
+
version = "2.5.7"
|
|
1637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1638
|
+
checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
|
|
1639
|
+
dependencies = [
|
|
1640
|
+
"form_urlencoded",
|
|
1641
|
+
"idna",
|
|
1642
|
+
"percent-encoding",
|
|
1643
|
+
"serde",
|
|
1644
|
+
]
|
|
1645
|
+
|
|
1646
|
+
[[package]]
|
|
1647
|
+
name = "urlencoding"
|
|
1648
|
+
version = "2.1.3"
|
|
1649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1650
|
+
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
|
1651
|
+
|
|
1652
|
+
[[package]]
|
|
1653
|
+
name = "utf16_iter"
|
|
1654
|
+
version = "1.0.5"
|
|
1655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1656
|
+
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
|
1657
|
+
|
|
1658
|
+
[[package]]
|
|
1659
|
+
name = "utf8_iter"
|
|
1660
|
+
version = "1.0.4"
|
|
1661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1662
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1663
|
+
|
|
1664
|
+
[[package]]
|
|
1665
|
+
name = "utf8parse"
|
|
1666
|
+
version = "0.2.2"
|
|
1667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1668
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1669
|
+
|
|
1670
|
+
[[package]]
|
|
1671
|
+
name = "wasi"
|
|
1672
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1674
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1675
|
+
|
|
1676
|
+
[[package]]
|
|
1677
|
+
name = "wasm"
|
|
1678
|
+
version = "0.1.0"
|
|
1679
|
+
dependencies = [
|
|
1680
|
+
"js",
|
|
1681
|
+
"js-sys",
|
|
1682
|
+
"oxc",
|
|
1683
|
+
"thiserror",
|
|
1684
|
+
"wasm-bindgen",
|
|
1685
|
+
"web-sys",
|
|
1686
|
+
]
|
|
1687
|
+
|
|
1688
|
+
[[package]]
|
|
1689
|
+
name = "wasm-bindgen"
|
|
1690
|
+
version = "0.2.105"
|
|
1691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1692
|
+
checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
|
|
1693
|
+
dependencies = [
|
|
1694
|
+
"cfg-if",
|
|
1695
|
+
"once_cell",
|
|
1696
|
+
"rustversion",
|
|
1697
|
+
"wasm-bindgen-macro",
|
|
1698
|
+
"wasm-bindgen-shared",
|
|
1699
|
+
]
|
|
1700
|
+
|
|
1701
|
+
[[package]]
|
|
1702
|
+
name = "wasm-bindgen-macro"
|
|
1703
|
+
version = "0.2.105"
|
|
1704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1705
|
+
checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
|
|
1706
|
+
dependencies = [
|
|
1707
|
+
"quote",
|
|
1708
|
+
"wasm-bindgen-macro-support",
|
|
1709
|
+
]
|
|
1710
|
+
|
|
1711
|
+
[[package]]
|
|
1712
|
+
name = "wasm-bindgen-macro-support"
|
|
1713
|
+
version = "0.2.105"
|
|
1714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1715
|
+
checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
|
|
1716
|
+
dependencies = [
|
|
1717
|
+
"bumpalo",
|
|
1718
|
+
"proc-macro2",
|
|
1719
|
+
"quote",
|
|
1720
|
+
"syn",
|
|
1721
|
+
"wasm-bindgen-shared",
|
|
1722
|
+
]
|
|
1723
|
+
|
|
1724
|
+
[[package]]
|
|
1725
|
+
name = "wasm-bindgen-shared"
|
|
1726
|
+
version = "0.2.105"
|
|
1727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1728
|
+
checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
|
|
1729
|
+
dependencies = [
|
|
1730
|
+
"unicode-ident",
|
|
1731
|
+
]
|
|
1732
|
+
|
|
1733
|
+
[[package]]
|
|
1734
|
+
name = "web-sys"
|
|
1735
|
+
version = "0.3.82"
|
|
1736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1737
|
+
checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
|
|
1738
|
+
dependencies = [
|
|
1739
|
+
"js-sys",
|
|
1740
|
+
"wasm-bindgen",
|
|
1741
|
+
]
|
|
1742
|
+
|
|
1743
|
+
[[package]]
|
|
1744
|
+
name = "windows-sys"
|
|
1745
|
+
version = "0.59.0"
|
|
1746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1747
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
1748
|
+
dependencies = [
|
|
1749
|
+
"windows-targets",
|
|
1750
|
+
]
|
|
1751
|
+
|
|
1752
|
+
[[package]]
|
|
1753
|
+
name = "windows-targets"
|
|
1754
|
+
version = "0.52.6"
|
|
1755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1756
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1757
|
+
dependencies = [
|
|
1758
|
+
"windows_aarch64_gnullvm",
|
|
1759
|
+
"windows_aarch64_msvc",
|
|
1760
|
+
"windows_i686_gnu",
|
|
1761
|
+
"windows_i686_gnullvm",
|
|
1762
|
+
"windows_i686_msvc",
|
|
1763
|
+
"windows_x86_64_gnu",
|
|
1764
|
+
"windows_x86_64_gnullvm",
|
|
1765
|
+
"windows_x86_64_msvc",
|
|
1766
|
+
]
|
|
1767
|
+
|
|
1768
|
+
[[package]]
|
|
1769
|
+
name = "windows_aarch64_gnullvm"
|
|
1770
|
+
version = "0.52.6"
|
|
1771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1772
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1773
|
+
|
|
1774
|
+
[[package]]
|
|
1775
|
+
name = "windows_aarch64_msvc"
|
|
1776
|
+
version = "0.52.6"
|
|
1777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1778
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1779
|
+
|
|
1780
|
+
[[package]]
|
|
1781
|
+
name = "windows_i686_gnu"
|
|
1782
|
+
version = "0.52.6"
|
|
1783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1784
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1785
|
+
|
|
1786
|
+
[[package]]
|
|
1787
|
+
name = "windows_i686_gnullvm"
|
|
1788
|
+
version = "0.52.6"
|
|
1789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1790
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1791
|
+
|
|
1792
|
+
[[package]]
|
|
1793
|
+
name = "windows_i686_msvc"
|
|
1794
|
+
version = "0.52.6"
|
|
1795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1796
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1797
|
+
|
|
1798
|
+
[[package]]
|
|
1799
|
+
name = "windows_x86_64_gnu"
|
|
1800
|
+
version = "0.52.6"
|
|
1801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1802
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1803
|
+
|
|
1804
|
+
[[package]]
|
|
1805
|
+
name = "windows_x86_64_gnullvm"
|
|
1806
|
+
version = "0.52.6"
|
|
1807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1808
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1809
|
+
|
|
1810
|
+
[[package]]
|
|
1811
|
+
name = "windows_x86_64_msvc"
|
|
1812
|
+
version = "0.52.6"
|
|
1813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1814
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1815
|
+
|
|
1816
|
+
[[package]]
|
|
1817
|
+
name = "winnow"
|
|
1818
|
+
version = "0.7.12"
|
|
1819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1820
|
+
checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
|
|
1821
|
+
dependencies = [
|
|
1822
|
+
"memchr",
|
|
1823
|
+
]
|
|
1824
|
+
|
|
1825
|
+
[[package]]
|
|
1826
|
+
name = "write16"
|
|
1827
|
+
version = "1.0.0"
|
|
1828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1829
|
+
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
|
1830
|
+
|
|
1831
|
+
[[package]]
|
|
1832
|
+
name = "writeable"
|
|
1833
|
+
version = "0.5.5"
|
|
1834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1835
|
+
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
|
1836
|
+
|
|
1837
|
+
[[package]]
|
|
1838
|
+
name = "writeable"
|
|
1839
|
+
version = "0.6.1"
|
|
1840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1841
|
+
checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
|
|
1842
|
+
|
|
1843
|
+
[[package]]
|
|
1844
|
+
name = "yoke"
|
|
1845
|
+
version = "0.7.5"
|
|
1846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1847
|
+
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
|
1848
|
+
dependencies = [
|
|
1849
|
+
"serde",
|
|
1850
|
+
"stable_deref_trait",
|
|
1851
|
+
"yoke-derive 0.7.5",
|
|
1852
|
+
"zerofrom",
|
|
1853
|
+
]
|
|
1854
|
+
|
|
1855
|
+
[[package]]
|
|
1856
|
+
name = "yoke"
|
|
1857
|
+
version = "0.8.0"
|
|
1858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1859
|
+
checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
|
|
1860
|
+
dependencies = [
|
|
1861
|
+
"serde",
|
|
1862
|
+
"stable_deref_trait",
|
|
1863
|
+
"yoke-derive 0.8.0",
|
|
1864
|
+
"zerofrom",
|
|
1865
|
+
]
|
|
1866
|
+
|
|
1867
|
+
[[package]]
|
|
1868
|
+
name = "yoke-derive"
|
|
1869
|
+
version = "0.7.5"
|
|
1870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1871
|
+
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
1872
|
+
dependencies = [
|
|
1873
|
+
"proc-macro2",
|
|
1874
|
+
"quote",
|
|
1875
|
+
"syn",
|
|
1876
|
+
"synstructure",
|
|
1877
|
+
]
|
|
1878
|
+
|
|
1879
|
+
[[package]]
|
|
1880
|
+
name = "yoke-derive"
|
|
1881
|
+
version = "0.8.0"
|
|
1882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1883
|
+
checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
|
|
1884
|
+
dependencies = [
|
|
1885
|
+
"proc-macro2",
|
|
1886
|
+
"quote",
|
|
1887
|
+
"syn",
|
|
1888
|
+
"synstructure",
|
|
1889
|
+
]
|
|
1890
|
+
|
|
1891
|
+
[[package]]
|
|
1892
|
+
name = "zerocopy"
|
|
1893
|
+
version = "0.8.26"
|
|
1894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1895
|
+
checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
|
|
1896
|
+
dependencies = [
|
|
1897
|
+
"zerocopy-derive",
|
|
1898
|
+
]
|
|
1899
|
+
|
|
1900
|
+
[[package]]
|
|
1901
|
+
name = "zerocopy-derive"
|
|
1902
|
+
version = "0.8.26"
|
|
1903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1904
|
+
checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
|
|
1905
|
+
dependencies = [
|
|
1906
|
+
"proc-macro2",
|
|
1907
|
+
"quote",
|
|
1908
|
+
"syn",
|
|
1909
|
+
]
|
|
1910
|
+
|
|
1911
|
+
[[package]]
|
|
1912
|
+
name = "zerofrom"
|
|
1913
|
+
version = "0.1.6"
|
|
1914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1915
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
1916
|
+
dependencies = [
|
|
1917
|
+
"zerofrom-derive",
|
|
1918
|
+
]
|
|
1919
|
+
|
|
1920
|
+
[[package]]
|
|
1921
|
+
name = "zerofrom-derive"
|
|
1922
|
+
version = "0.1.6"
|
|
1923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1924
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
1925
|
+
dependencies = [
|
|
1926
|
+
"proc-macro2",
|
|
1927
|
+
"quote",
|
|
1928
|
+
"syn",
|
|
1929
|
+
"synstructure",
|
|
1930
|
+
]
|
|
1931
|
+
|
|
1932
|
+
[[package]]
|
|
1933
|
+
name = "zerotrie"
|
|
1934
|
+
version = "0.2.2"
|
|
1935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1936
|
+
checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
|
|
1937
|
+
dependencies = [
|
|
1938
|
+
"displaydoc",
|
|
1939
|
+
"yoke 0.8.0",
|
|
1940
|
+
"zerofrom",
|
|
1941
|
+
]
|
|
1942
|
+
|
|
1943
|
+
[[package]]
|
|
1944
|
+
name = "zerovec"
|
|
1945
|
+
version = "0.10.4"
|
|
1946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1947
|
+
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
|
1948
|
+
dependencies = [
|
|
1949
|
+
"yoke 0.7.5",
|
|
1950
|
+
"zerofrom",
|
|
1951
|
+
"zerovec-derive 0.10.3",
|
|
1952
|
+
]
|
|
1953
|
+
|
|
1954
|
+
[[package]]
|
|
1955
|
+
name = "zerovec"
|
|
1956
|
+
version = "0.11.2"
|
|
1957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1958
|
+
checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
|
|
1959
|
+
dependencies = [
|
|
1960
|
+
"yoke 0.8.0",
|
|
1961
|
+
"zerofrom",
|
|
1962
|
+
"zerovec-derive 0.11.1",
|
|
1963
|
+
]
|
|
1964
|
+
|
|
1965
|
+
[[package]]
|
|
1966
|
+
name = "zerovec-derive"
|
|
1967
|
+
version = "0.10.3"
|
|
1968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1969
|
+
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
1970
|
+
dependencies = [
|
|
1971
|
+
"proc-macro2",
|
|
1972
|
+
"quote",
|
|
1973
|
+
"syn",
|
|
1974
|
+
]
|
|
1975
|
+
|
|
1976
|
+
[[package]]
|
|
1977
|
+
name = "zerovec-derive"
|
|
1978
|
+
version = "0.11.1"
|
|
1979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1980
|
+
checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
|
|
1981
|
+
dependencies = [
|
|
1982
|
+
"proc-macro2",
|
|
1983
|
+
"quote",
|
|
1984
|
+
"syn",
|
|
1985
|
+
]
|