├── src
├── memory
│ └── index.html
├── chat
│ ├── types.ts
│ ├── room
│ │ ├── set-room.ts
│ │ └── array-room.ts
│ └── array-chat.ts
├── debug.ts
├── server.ts
├── client.ts
├── main.rs
├── bjarne
│ └── index.ts
└── array
│ └── index.ts
├── my-sweet-ass-project
├── src
│ ├── vite-env.d.ts
│ ├── main.ts
│ └── trace.js
├── package.json
├── .gitignore
├── index.html
├── tsconfig.json
├── public
│ └── vite.svg
└── package-lock.json
├── .gitignore
├── package.json
├── Cargo.toml
├── pnpm-lock.yaml
├── tsconfig.json
└── Cargo.lock
/src/memory/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/my-sweet-ass-project/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | dist/
2 | node_modules/
3 | /out
4 |
5 |
6 | # Added by cargo
7 |
8 | /target
9 |
--------------------------------------------------------------------------------
/src/chat/types.ts:
--------------------------------------------------------------------------------
1 | import WebSocket from "ws";
2 |
3 | export interface IRoom {
4 | name: string;
5 |
6 | add(user: WebSocket): void;
7 | push(from: WebSocket, message: string): void;
8 | remove(user: WebSocket): void;
9 | }
10 |
11 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "dependencies": {
3 | "@types/command-line-args": "^5.2.0",
4 | "@types/node": "^20.4.1",
5 | "@types/ws": "^8.5.5",
6 | "command-line-args": "^5.2.1",
7 | "ts-node": "^10.9.1",
8 | "typescript": "^5.1.6",
9 | "ws": "^8.13.0"
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/src/debug.ts:
--------------------------------------------------------------------------------
1 |
2 | let debug = true;
3 | export function turnOnDebugger() {
4 | debug = true;
5 | }
6 |
7 | export const logger = {
8 | debug(...messages: string[]) {
9 | if (!debug) {
10 | return;
11 | }
12 |
13 | console.log(...messages);
14 | }
15 | }
16 |
17 |
--------------------------------------------------------------------------------
/src/server.ts:
--------------------------------------------------------------------------------
1 | import WebSocket from "ws";
2 | import { Chat } from "./chat/array-chat";
3 |
4 | const server = new WebSocket.Server({ port: 42069 });
5 | const chat = new Chat();
6 |
7 | server.on("connection", function(socket) {
8 | chat.add(socket);
9 | });
10 |
11 | server.on("error", function(error) {
12 | console.error("error", error);
13 | });
14 |
15 |
--------------------------------------------------------------------------------
/my-sweet-ass-project/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "my-sweet-ass-project",
3 | "private": true,
4 | "version": "0.0.0",
5 | "type": "module",
6 | "scripts": {
7 | "dev": "vite",
8 | "build": "tsc && vite build",
9 | "preview": "vite preview"
10 | },
11 | "devDependencies": {
12 | "typescript": "^5.0.2",
13 | "vite": "^4.4.5"
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/my-sweet-ass-project/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 | pnpm-debug.log*
8 | lerna-debug.log*
9 |
10 | node_modules
11 | dist
12 | dist-ssr
13 | *.local
14 |
15 | # Editor directories and files
16 | .vscode/*
17 | !.vscode/extensions.json
18 | .idea
19 | .DS_Store
20 | *.suo
21 | *.ntvs*
22 | *.njsproj
23 | *.sln
24 | *.sw?
25 |
--------------------------------------------------------------------------------
/my-sweet-ass-project/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Vite + TS
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/src/client.ts:
--------------------------------------------------------------------------------
1 | import WebSocket from "ws";
2 | import { turnOnDebugger } from "./debug";
3 |
4 | turnOnDebugger();
5 | const client = new WebSocket("ws://0.0.0.0:42069");
6 |
7 | client.on("open", () => {
8 | client.send("join foobar", {binary: false});
9 | client.send("join barbaz", {binary: false});
10 | });
11 |
12 | client.on("close", () => {
13 | console.log("we have closed houston");
14 | });
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/Cargo.toml:
--------------------------------------------------------------------------------
1 | [package]
2 | name = "javascwipt-performance"
3 | version = "0.1.0"
4 | edition = "2021"
5 |
6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7 |
8 | [dependencies]
9 | anyhow = "1.0.72"
10 | clap = { version = "4.3.19", features = ["derive"] }
11 | futures-util = "0.3.28"
12 | tokio = { version = "1.29.1", features = ["full"] }
13 | tokio-tungstenite = "0.20.0"
14 | url = "2.4.0"
15 |
--------------------------------------------------------------------------------
/my-sweet-ass-project/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "ES2020",
4 | "useDefineForClassFields": true,
5 | "module": "ESNext",
6 | "lib": ["ES2020", "DOM", "DOM.Iterable"],
7 | "skipLibCheck": true,
8 |
9 | /* Bundler mode */
10 | "moduleResolution": "bundler",
11 | "allowImportingTsExtensions": true,
12 | "resolveJsonModule": true,
13 | "isolatedModules": true,
14 | "noEmit": true,
15 |
16 | /* Linting */
17 | "strict": true,
18 | "noUnusedLocals": true,
19 | "noUnusedParameters": true,
20 | "noFallthroughCasesInSwitch": true
21 | },
22 | "include": ["src"]
23 | }
24 |
--------------------------------------------------------------------------------
/src/chat/room/set-room.ts:
--------------------------------------------------------------------------------
1 | import WebSocket from "ws";
2 |
3 | export default class SetRoom {
4 | private users: Set;
5 |
6 | constructor() {
7 | this.users = new Set();
8 | }
9 |
10 | add(user: WebSocket) {
11 | if (!this.users.has(user)) {
12 | this.users.add(user);
13 | }
14 | }
15 |
16 | remove(user: WebSocket) {
17 | if (this.users.has(user)) {
18 | this.users.delete(user);
19 | }
20 | }
21 |
22 | push(from: WebSocket, message: string) {
23 | for (const sockMeDaddy of this.users) {
24 | sockMeDaddy.send(`${from} says ${message}`);
25 | }
26 | }
27 | }
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/src/chat/room/array-room.ts:
--------------------------------------------------------------------------------
1 | import WebSocket from "ws";
2 |
3 | export default class ArrayRoom {
4 | private users: WebSocket[];
5 |
6 | constructor(public name: string) {
7 | this.users = [];
8 | }
9 |
10 | add(user: WebSocket) {
11 | if (!this.users.includes(user)) {
12 | this.users.push(user);
13 | }
14 | }
15 |
16 | remove(user: WebSocket) {
17 | if (this.users.includes(user)) {
18 | this.users.splice(this.users.indexOf(user), 1);
19 | }
20 | }
21 |
22 | push(from: WebSocket, message: string) {
23 | for (const sockMeDaddy of this.users) {
24 | sockMeDaddy.send(`${from} says ${message}`);
25 | }
26 | }
27 |
28 | }
29 |
30 |
31 |
--------------------------------------------------------------------------------
/my-sweet-ass-project/public/vite.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/my-sweet-ass-project/src/main.ts:
--------------------------------------------------------------------------------
1 |
2 | const str = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
3 | const keys = [
4 | "foo",
5 | "bar",
6 | "baz",
7 | "qux",
8 | "quux",
9 | "corge",
10 | "grault",
11 | "garply",
12 | "waldo",
13 | "fred",
14 | "plugh",
15 | "xyzzy",
16 | "thud",
17 | ];
18 |
19 | function createString(len: number = 7) {
20 | return new Array(len).fill(0)
21 | .map(() => str[Math.floor(Math.random() * str.length)])
22 | .join('');
23 | }
24 |
25 | function createObject(keyLength: number, len: number) {
26 | const out: Record = {};
27 | for (let i = 0; i < keyLength; i++) {
28 | const key = keys[Math.floor(Math.random() * keys.length)] as string;
29 | out[key] = createString(len);
30 | }
31 |
32 | return out;
33 | }
34 |
35 | const params = new URLSearchParams(document.location.search);
36 | const strLength = +(params.get("str_length") || 7);
37 | const keyLength = +(params.get("key_length") || 3);
38 | const time = +(params.get("time") || 10_000);
39 | const count = +(params.get("count") || 100);
40 | const size = +(params.get("size") || 1000);
41 |
42 | if (isNaN(time) || isNaN(count) || isNaN(size) || isNaN(strLength)) {
43 | throw new Error("Invalid parameters");
44 | }
45 |
46 | const objects = new Array(size).fill(0).map(() => createObject(keyLength, strLength));
47 | function run() {
48 | for (let i = 0; i < count; i++) {
49 | objects[Math.floor(Math.random() * size)] = createObject(keyLength, strLength);
50 | }
51 | setTimeout(run, time);
52 | }
53 | run();
54 |
55 |
--------------------------------------------------------------------------------
/src/main.rs:
--------------------------------------------------------------------------------
1 | use std::sync::Arc;
2 |
3 | use anyhow::Result;
4 | use clap::Parser;
5 | use futures_util::{StreamExt, SinkExt, future::join_all};
6 | use tokio_tungstenite::tungstenite::Message;
7 | use url::Url;
8 |
9 | #[derive(Debug, Parser)]
10 | struct Config {
11 | #[clap(short, long, default_value = "0.0.0.0")]
12 | addr: String,
13 |
14 | #[clap(short, long, default_value = "42069")]
15 | port: u16,
16 |
17 | #[clap(short = 'q', long, default_value_t = 8)]
18 | parallel: usize,
19 |
20 | #[clap(short, long, default_value_t = 10000)]
21 | count: usize,
22 | }
23 |
24 | async fn handle_connection(addr: &'static Url) -> Result<()> {
25 | let (mut socket, _) = tokio_tungstenite::connect_async(addr).await?;
26 | let (mut write, mut read) = socket.split();
27 |
28 | write.send(Message::Text("join foobar".into())).await?;
29 | write.send(Message::Text("join bazbuz".into())).await?;
30 |
31 | return Ok(());
32 | }
33 |
34 | #[tokio::main]
35 | async fn main() -> Result<()> {
36 | // start tokio tungstenite server
37 | let config = Config::parse();
38 | let addr: Url = Url::parse(&format!("ws://{}:{}", config.addr, config.port))?;
39 | let addr: &'static Url = Box::leak(Box::new(addr));
40 | let semaphore = Arc::new(tokio::sync::Semaphore::new(config.parallel));
41 |
42 | let mut handles = Vec::with_capacity(config.count);
43 | for _ in 0..config.count {
44 | let semaphore = semaphore.clone();
45 | let permit = semaphore.acquire_owned().await?;
46 |
47 | handles.push(tokio::spawn(async move {
48 | handle_connection(addr).await.unwrap();
49 |
50 | drop(permit);
51 | }));
52 | }
53 |
54 | join_all(handles).await;
55 |
56 | return Ok(());
57 | }
58 |
--------------------------------------------------------------------------------
/my-sweet-ass-project/src/trace.js:
--------------------------------------------------------------------------------
1 | import cli from "command-line-args";
2 |
3 | const args = cli([{
4 | name: "strLength",
5 | type: Number,
6 | alias: "s",
7 | defaultValue: 7,
8 | }, {
9 | name: "keyLength",
10 | type: Number,
11 | alias: "k",
12 | defaultValue: 3,
13 | }, {
14 | name: "time",
15 | type: Number,
16 | alias: "t",
17 | defaultValue: 16,
18 | }, {
19 | name: "count",
20 | type: Number,
21 | alias: "c",
22 | defaultValue: 100,
23 | }, {
24 | name: "size",
25 | type: Number,
26 | alias: "p",
27 | defaultValue: 1000,
28 | }]);
29 |
30 | console.log(args);
31 |
32 | const {
33 | size,
34 | count,
35 | time,
36 | keyLength,
37 | strLength,
38 | } = args;
39 |
40 | const str = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
41 | const keys = [
42 | "foo",
43 | "bar",
44 | "baz",
45 | "qux",
46 | "quux",
47 | "corge",
48 | "grault",
49 | "garply",
50 | "waldo",
51 | "fred",
52 | "plugh",
53 | "xyzzy",
54 | "thud",
55 | ];
56 |
57 | function createString(len = 7) {
58 | return new Array(len).fill(0)
59 | .map(() => str[Math.floor(Math.random() * str.length)])
60 | .join('');
61 | }
62 |
63 | function createObject(keyLength, len) {
64 | const out = {};
65 | for (let i = 0; i < keyLength; i++) {
66 | const key = keys[Math.floor(Math.random() * keys.length)];
67 | out[key] = createString(len);
68 | }
69 |
70 | return out;
71 | }
72 |
73 | if (isNaN(time) || isNaN(count) || isNaN(size) || isNaN(strLength)) {
74 | throw new Error("Invalid parameters");
75 | }
76 |
77 | const objects = new Array(size).fill(0).map(() => createObject(keyLength, strLength));
78 | function run() {
79 | for (let i = 0; i < count; i++) {
80 | objects[Math.floor(Math.random() * size)] = createObject(keyLength, strLength);
81 | }
82 | setTimeout(run, time);
83 | }
84 | run();
85 |
86 |
87 |
--------------------------------------------------------------------------------
/src/chat/array-chat.ts:
--------------------------------------------------------------------------------
1 | import ArrayRoom from "./room/array-room";
2 | import WebSocket from "ws";
3 | import { IRoom } from "./types";
4 |
5 | export class Chat {
6 | private users: WebSocket[];
7 | private rooms: IRoom[];
8 |
9 | constructor() {
10 | this.users = [];
11 | this.rooms = [];
12 | }
13 |
14 | add(user: WebSocket) {
15 | this.users.push(user);
16 |
17 | user.on("message", (msg) => {
18 | const message = typeof msg === "object" ? msg.toString() : msg;
19 | const [command, ...rest] = message.split(" ");
20 | if (command === "join") {
21 | this.join(user, rest[0]);
22 | } else if (command === "msg") {
23 | this.msg(user, rest[0], rest.slice(1).join(" "));
24 | } else if (command === "leave") {
25 | this.leave(user, rest[0]);
26 | }
27 |
28 | console.log("message received", command, rest);
29 | });
30 |
31 | user.on("error", (error: Error) => {
32 | console.error(error);
33 | });
34 |
35 | user.on("close", () => {
36 | this.users.splice(this.users.indexOf(user), 1);
37 | this.rooms.forEach((room) => {
38 | room.remove(user);
39 | });
40 | });
41 | }
42 |
43 | private join(user: WebSocket, roomName: string): void {
44 | let room = this.findRoom(roomName);
45 |
46 | if (!room) {
47 | room = new ArrayRoom(roomName);
48 | this.rooms.push(room);
49 | }
50 |
51 | room.add(user);
52 | }
53 |
54 | private leave(user: WebSocket, roomName: string): void {
55 | let room = this.findRoom(roomName);
56 | if (!room) {
57 | user.send("you are a roomless jerk");
58 | return;
59 | }
60 |
61 | room.remove(user);
62 | }
63 |
64 | private msg(user: WebSocket, roomName: string | undefined, message: string): void {
65 | if (roomName === undefined || message.length === 0) {
66 | user.send("you are a jerk");
67 | return;
68 | }
69 |
70 | let room = this.findRoom(roomName);
71 | if (!room) {
72 | user.send("you are a roomless jerk");
73 | return;
74 | }
75 |
76 | room.push(user, message);
77 | }
78 |
79 | private findRoom(roomName: string): IRoom | undefined {
80 | return this.rooms.find(room => room.name === roomName);
81 | }
82 | }
83 |
84 |
--------------------------------------------------------------------------------
/src/bjarne/index.ts:
--------------------------------------------------------------------------------
1 | import { setFlagsFromString } from 'v8';
2 | import { runInNewContext } from 'vm';
3 | setFlagsFromString('--expose_gc');
4 | const gc = runInNewContext('gc');
5 |
6 | type LNode = {
7 | value: number;
8 | next: LNode | null;
9 | prev: LNode | null;
10 | }
11 |
12 | function createNode(value: number): LNode {
13 | return {
14 | value,
15 | next: null,
16 | prev: null,
17 | };
18 | }
19 |
20 | function cut(head: LNode, index: number): LNode {
21 | let node: LNode | null = head;
22 | const isHead = index === 0;
23 |
24 | while (index > 0 && node) {
25 | node = node.next;
26 | index--;
27 | }
28 |
29 | if (!node) {
30 | throw new Error("why are you bad at programming");
31 | }
32 |
33 | const prev = node.prev;
34 | const next = node.next;
35 |
36 | if (prev) {
37 | prev.next = next;
38 | }
39 |
40 | if (next) {
41 | next.prev = prev;
42 | }
43 |
44 | node.prev = null;
45 | node.next = null;
46 |
47 | return (isHead ? next : head) as LNode;
48 | }
49 |
50 | function createData(size: number): [number[], LNode] {
51 | const arr = new Array(size).fill(0);
52 | let current = createNode(0);
53 | const head = current;
54 |
55 | for (let i = 1; i < size; i++) {
56 | arr[i] = i;
57 | current.next = createNode(i);
58 | current.next.prev = current;
59 | current = current.next;
60 | }
61 |
62 | return [arr, head];
63 | }
64 |
65 | function getRando(max: number) {
66 | return Math.floor(Math.random() * max);
67 | }
68 |
69 | function test(arr: number[], head: LNode, count: number, shift: number = 0) {
70 | gc();
71 |
72 | const indices = new Array(count).
73 | fill(0).
74 | map((_, i) => getRando((arr.length - i) >> shift));
75 |
76 | console.time("cut");
77 | for (let i = 0; i < count; i++) {
78 | head = cut(head, indices[i]);
79 | }
80 | console.timeEnd("cut");
81 |
82 | gc();
83 |
84 | console.time("array");
85 | for (let i = 0; i < count; i++) {
86 | arr.splice(indices[i], 1);
87 | }
88 | console.timeEnd("array");
89 |
90 | gc();
91 | }
92 |
93 | [1000, 10000, 100000].forEach((size) => {
94 | for (let i = 0; i < 5; ++i) {
95 | console.log("testing", size, i);
96 | const [arr, head] = createData(size);
97 |
98 | test(arr, head, size / 2, i);
99 | }
100 | console.log();
101 | console.log();
102 | });
103 |
104 |
105 |
106 |
107 |
--------------------------------------------------------------------------------
/src/array/index.ts:
--------------------------------------------------------------------------------
1 | import { setFlagsFromString } from 'v8';
2 | import { runInNewContext } from 'vm';
3 | setFlagsFromString('--expose_gc');
4 | const gc = runInNewContext('gc');
5 |
6 | function getRando(): number {
7 | return Math.floor(Math.random() * 42069);
8 | }
9 |
10 | function createRandom(len: number): number[] {
11 | let arr: number[] = [];
12 | for (let i = 0; i < len; ++i) {
13 | let char: number;
14 | do {
15 | char = getRando();
16 | } while (arr.includes(char));
17 | arr.push(char);
18 | }
19 | return arr;
20 | }
21 |
22 | function newArrayFrom(array: number[], length: number): number[] {
23 | return new Array(length).fill(0).map((_, i) => array[i % array.length]);
24 | }
25 |
26 | function createLargeRando(length: number, howFar: number, howMany: number): number[] {
27 | console.log("creating random", length, howFar, howMany);
28 | let repeater = createRandom(howMany - 1);
29 | repeater.push(repeater[0]);
30 |
31 | console.log(" creating random#rando", repeater.slice(0, 3), repeater.slice(-3));
32 | const front = newArrayFrom(repeater, howFar);
33 | const back = newArrayFrom(repeater, length - howFar - howMany);
34 |
35 | console.log(" ", front.length, back.length);
36 | return front
37 | .concat(createRandom(howMany))
38 | .concat(back);
39 | }
40 |
41 | function checkWithSet(arr: number[], length: number): number {
42 | let set = new Set();
43 | for (let i = 0; i < arr.length; ++i) {
44 | const size = set.size;
45 |
46 | set.add(arr[i]);
47 |
48 | if (size === set.size) {
49 | set = new Set();
50 | }
51 |
52 | if (set.size === length) {
53 | return i;
54 | }
55 | }
56 |
57 | return 0;
58 | }
59 |
60 | function checkWithBuffer(arr: number[], length: number): number {
61 | let copium: Uint16Array = new Uint16Array(length);
62 | let idx = 0;
63 | for (let i = 0; i < arr.length; ++i) {
64 | const arrItemIndex = copium.indexOf(arr[i]);
65 | if (arrItemIndex >= 0 && idx > arrItemIndex) {
66 | idx = 0;
67 | } else {
68 | copium[idx++] = arr[i];
69 | }
70 |
71 | if (idx === length) {
72 | return i;
73 | }
74 | }
75 |
76 | return 0;
77 | }
78 |
79 | function checkWithArray(arr: number[], length: number): number {
80 | let copium: number[] = [];
81 | for (let i = 0; i < arr.length; ++i) {
82 | if (copium.includes(arr[i])) {
83 | copium = [];
84 | } else {
85 | copium.push(arr[i]);
86 | }
87 |
88 | if (copium.length === length) {
89 | return i;
90 | }
91 | }
92 |
93 | return 0;
94 | }
95 |
96 | const size = 1024 * 1024;
97 | const when = 1024 * 1023;
98 |
99 | console.log("creating string");
100 | const strs = new Array(4).fill(0).map((_, i) => {
101 | const point = (i + 1) * 10;
102 | console.log("point", point);
103 | return [point, createLargeRando(size, when, point)]
104 | });
105 |
106 | function test(arr: number[], length: number, count: number) {
107 | gc();
108 | let setIdx = 0, arrIdx = 0, bufIdx = 0;
109 |
110 | console.time("set");
111 | for (let i = 0; i < count; ++i) {
112 | setIdx = checkWithSet(arr, length);
113 | }
114 | console.timeEnd("set");
115 | gc();
116 |
117 | console.time("arr");
118 | for (let i = 0; i < count; ++i) {
119 | arrIdx = checkWithArray(arr, length);
120 | }
121 | console.timeEnd("arr");
122 | gc();
123 |
124 | console.time("buf");
125 | for (let i = 0; i < count; ++i) {
126 | bufIdx = checkWithBuffer(arr, length);
127 | }
128 | console.timeEnd("buf");
129 | gc();
130 |
131 | console.log(arrIdx, setIdx, bufIdx);
132 |
133 | }
134 |
135 | test(strs[0][0] as number[], 10, strs[0][1] as number);
136 |
137 | (strs.reverse()).forEach(([length, arr]) => {
138 | console.log("count", length, "length", 100, "arr");
139 | test(arr as number[], length as number, 100);
140 | });
141 |
142 |
143 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: '6.0'
2 |
3 | dependencies:
4 | '@types/node':
5 | specifier: ^20.4.1
6 | version: 20.4.1
7 | '@types/ws':
8 | specifier: ^8.5.5
9 | version: 8.5.5
10 | ts-node:
11 | specifier: ^10.9.1
12 | version: 10.9.1(@types/node@20.4.1)(typescript@5.1.6)
13 | typescript:
14 | specifier: ^5.1.6
15 | version: 5.1.6
16 | ws:
17 | specifier: ^8.13.0
18 | version: 8.13.0
19 |
20 | packages:
21 |
22 | /@cspotcode/source-map-support@0.8.1:
23 | resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
24 | engines: {node: '>=12'}
25 | dependencies:
26 | '@jridgewell/trace-mapping': 0.3.9
27 | dev: false
28 |
29 | /@jridgewell/resolve-uri@3.1.1:
30 | resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
31 | engines: {node: '>=6.0.0'}
32 | dev: false
33 |
34 | /@jridgewell/sourcemap-codec@1.4.15:
35 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
36 | dev: false
37 |
38 | /@jridgewell/trace-mapping@0.3.9:
39 | resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
40 | dependencies:
41 | '@jridgewell/resolve-uri': 3.1.1
42 | '@jridgewell/sourcemap-codec': 1.4.15
43 | dev: false
44 |
45 | /@tsconfig/node10@1.0.9:
46 | resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==}
47 | dev: false
48 |
49 | /@tsconfig/node12@1.0.11:
50 | resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
51 | dev: false
52 |
53 | /@tsconfig/node14@1.0.3:
54 | resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
55 | dev: false
56 |
57 | /@tsconfig/node16@1.0.4:
58 | resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
59 | dev: false
60 |
61 | /@types/node@20.4.1:
62 | resolution: {integrity: sha512-JIzsAvJeA/5iY6Y/OxZbv1lUcc8dNSE77lb2gnBH+/PJ3lFR1Ccvgwl5JWnHAkNHcRsT0TbpVOsiMKZ1F/yyJg==}
63 | dev: false
64 |
65 | /@types/ws@8.5.5:
66 | resolution: {integrity: sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==}
67 | dependencies:
68 | '@types/node': 20.4.1
69 | dev: false
70 |
71 | /acorn-walk@8.2.0:
72 | resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
73 | engines: {node: '>=0.4.0'}
74 | dev: false
75 |
76 | /acorn@8.10.0:
77 | resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==}
78 | engines: {node: '>=0.4.0'}
79 | hasBin: true
80 | dev: false
81 |
82 | /arg@4.1.3:
83 | resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
84 | dev: false
85 |
86 | /create-require@1.1.1:
87 | resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
88 | dev: false
89 |
90 | /diff@4.0.2:
91 | resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
92 | engines: {node: '>=0.3.1'}
93 | dev: false
94 |
95 | /make-error@1.3.6:
96 | resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
97 | dev: false
98 |
99 | /ts-node@10.9.1(@types/node@20.4.1)(typescript@5.1.6):
100 | resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
101 | hasBin: true
102 | peerDependencies:
103 | '@swc/core': '>=1.2.50'
104 | '@swc/wasm': '>=1.2.50'
105 | '@types/node': '*'
106 | typescript: '>=2.7'
107 | peerDependenciesMeta:
108 | '@swc/core':
109 | optional: true
110 | '@swc/wasm':
111 | optional: true
112 | dependencies:
113 | '@cspotcode/source-map-support': 0.8.1
114 | '@tsconfig/node10': 1.0.9
115 | '@tsconfig/node12': 1.0.11
116 | '@tsconfig/node14': 1.0.3
117 | '@tsconfig/node16': 1.0.4
118 | '@types/node': 20.4.1
119 | acorn: 8.10.0
120 | acorn-walk: 8.2.0
121 | arg: 4.1.3
122 | create-require: 1.1.1
123 | diff: 4.0.2
124 | make-error: 1.3.6
125 | typescript: 5.1.6
126 | v8-compile-cache-lib: 3.0.1
127 | yn: 3.1.1
128 | dev: false
129 |
130 | /typescript@5.1.6:
131 | resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==}
132 | engines: {node: '>=14.17'}
133 | hasBin: true
134 | dev: false
135 |
136 | /v8-compile-cache-lib@3.0.1:
137 | resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
138 | dev: false
139 |
140 | /ws@8.13.0:
141 | resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==}
142 | engines: {node: '>=10.0.0'}
143 | peerDependencies:
144 | bufferutil: ^4.0.1
145 | utf-8-validate: '>=5.0.2'
146 | peerDependenciesMeta:
147 | bufferutil:
148 | optional: true
149 | utf-8-validate:
150 | optional: true
151 | dev: false
152 |
153 | /yn@3.1.1:
154 | resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
155 | engines: {node: '>=6'}
156 | dev: false
157 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "includes": [
3 | "src"
4 | ],
5 | "compilerOptions": {
6 | /* Visit https://aka.ms/tsconfig to read more about this file */
7 |
8 | /* Projects */
9 | // "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */
10 | // "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */
11 | // "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */
12 | // "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */
13 | // "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */
14 | // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
15 |
16 | /* Language and Environment */
17 | "target": "esnext", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
18 | // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
19 | // "jsx": "preserve", /* Specify what JSX code is generated. */
20 | // "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */
21 | // "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
22 | // "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'. */
23 | // "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */
24 | // "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'. */
25 | // "reactNamespace": "", /* Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit. */
26 | // "noLib": true, /* Disable including any library files, including the default lib.d.ts. */
27 | // "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
28 | // "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
29 |
30 | /* Modules */
31 | "module": "commonjs", /* Specify what module code is generated. */
32 | // "rootDir": "./", /* Specify the root folder within your source files. */
33 | // "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
34 | // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
35 | // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
36 | // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
37 | // "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */
38 | // "types": [], /* Specify type package names to be included without being referenced in a source file. */
39 | // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
40 | // "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */
41 | // "resolveJsonModule": true, /* Enable importing .json files. */
42 | // "noResolve": true, /* Disallow 'import's, 'require's or ''s from expanding the number of files TypeScript should add to a project. */
43 |
44 | /* JavaScript Support */
45 | // "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
46 | // "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
47 | // "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
48 |
49 | /* Emit */
50 | "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
51 | "declarationMap": true, /* Create sourcemaps for d.ts files. */
52 | // "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
53 | "sourceMap": true, /* Create source map files for emitted JavaScript files. */
54 | // "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
55 | "outDir": "./dist", /* Specify an output folder for all emitted files. */
56 | // "removeComments": true, /* Disable emitting comments. */
57 | // "noEmit": true, /* Disable emitting files from a compilation. */
58 | // "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
59 | // "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types. */
60 | // "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
61 | // "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */
62 | // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
63 | // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
64 | // "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */
65 | // "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */
66 | // "newLine": "crlf", /* Set the newline character for emitting files. */
67 | // "stripInternal": true, /* Disable emitting declarations that have '@internal' in their JSDoc comments. */
68 | // "noEmitHelpers": true, /* Disable generating custom helper functions like '__extends' in compiled output. */
69 | // "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */
70 | // "preserveConstEnums": true, /* Disable erasing 'const enum' declarations in generated code. */
71 | // "declarationDir": "./", /* Specify the output directory for generated declaration files. */
72 | // "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */
73 |
74 | /* Interop Constraints */
75 | // "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
76 | // "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
77 | "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
78 | // "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
79 | "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
80 |
81 | /* Type Checking */
82 | "strict": true, /* Enable all strict type-checking options. */
83 | // "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */
84 | // "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */
85 | // "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
86 | // "strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */
87 | // "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */
88 | // "noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */
89 | // "useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */
90 | // "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
91 | // "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */
92 | // "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */
93 | // "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
94 | // "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
95 | // "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */
96 | // "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */
97 | // "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
98 | // "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */
99 | // "allowUnusedLabels": true, /* Disable error reporting for unused labels. */
100 | // "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */
101 |
102 | /* Completeness */
103 | // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
104 | "skipLibCheck": true /* Skip type checking all .d.ts files. */
105 | }
106 | }
107 |
--------------------------------------------------------------------------------
/my-sweet-ass-project/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "my-sweet-ass-project",
3 | "version": "0.0.0",
4 | "lockfileVersion": 3,
5 | "requires": true,
6 | "packages": {
7 | "": {
8 | "name": "my-sweet-ass-project",
9 | "version": "0.0.0",
10 | "devDependencies": {
11 | "typescript": "^5.0.2",
12 | "vite": "^4.4.5"
13 | }
14 | },
15 | "node_modules/@esbuild/android-arm": {
16 | "version": "0.18.20",
17 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz",
18 | "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==",
19 | "cpu": [
20 | "arm"
21 | ],
22 | "dev": true,
23 | "optional": true,
24 | "os": [
25 | "android"
26 | ],
27 | "engines": {
28 | "node": ">=12"
29 | }
30 | },
31 | "node_modules/@esbuild/android-arm64": {
32 | "version": "0.18.20",
33 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz",
34 | "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==",
35 | "cpu": [
36 | "arm64"
37 | ],
38 | "dev": true,
39 | "optional": true,
40 | "os": [
41 | "android"
42 | ],
43 | "engines": {
44 | "node": ">=12"
45 | }
46 | },
47 | "node_modules/@esbuild/android-x64": {
48 | "version": "0.18.20",
49 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz",
50 | "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==",
51 | "cpu": [
52 | "x64"
53 | ],
54 | "dev": true,
55 | "optional": true,
56 | "os": [
57 | "android"
58 | ],
59 | "engines": {
60 | "node": ">=12"
61 | }
62 | },
63 | "node_modules/@esbuild/darwin-arm64": {
64 | "version": "0.18.20",
65 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz",
66 | "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==",
67 | "cpu": [
68 | "arm64"
69 | ],
70 | "dev": true,
71 | "optional": true,
72 | "os": [
73 | "darwin"
74 | ],
75 | "engines": {
76 | "node": ">=12"
77 | }
78 | },
79 | "node_modules/@esbuild/darwin-x64": {
80 | "version": "0.18.20",
81 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz",
82 | "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==",
83 | "cpu": [
84 | "x64"
85 | ],
86 | "dev": true,
87 | "optional": true,
88 | "os": [
89 | "darwin"
90 | ],
91 | "engines": {
92 | "node": ">=12"
93 | }
94 | },
95 | "node_modules/@esbuild/freebsd-arm64": {
96 | "version": "0.18.20",
97 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz",
98 | "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==",
99 | "cpu": [
100 | "arm64"
101 | ],
102 | "dev": true,
103 | "optional": true,
104 | "os": [
105 | "freebsd"
106 | ],
107 | "engines": {
108 | "node": ">=12"
109 | }
110 | },
111 | "node_modules/@esbuild/freebsd-x64": {
112 | "version": "0.18.20",
113 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz",
114 | "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==",
115 | "cpu": [
116 | "x64"
117 | ],
118 | "dev": true,
119 | "optional": true,
120 | "os": [
121 | "freebsd"
122 | ],
123 | "engines": {
124 | "node": ">=12"
125 | }
126 | },
127 | "node_modules/@esbuild/linux-arm": {
128 | "version": "0.18.20",
129 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz",
130 | "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==",
131 | "cpu": [
132 | "arm"
133 | ],
134 | "dev": true,
135 | "optional": true,
136 | "os": [
137 | "linux"
138 | ],
139 | "engines": {
140 | "node": ">=12"
141 | }
142 | },
143 | "node_modules/@esbuild/linux-arm64": {
144 | "version": "0.18.20",
145 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz",
146 | "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==",
147 | "cpu": [
148 | "arm64"
149 | ],
150 | "dev": true,
151 | "optional": true,
152 | "os": [
153 | "linux"
154 | ],
155 | "engines": {
156 | "node": ">=12"
157 | }
158 | },
159 | "node_modules/@esbuild/linux-ia32": {
160 | "version": "0.18.20",
161 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz",
162 | "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==",
163 | "cpu": [
164 | "ia32"
165 | ],
166 | "dev": true,
167 | "optional": true,
168 | "os": [
169 | "linux"
170 | ],
171 | "engines": {
172 | "node": ">=12"
173 | }
174 | },
175 | "node_modules/@esbuild/linux-loong64": {
176 | "version": "0.18.20",
177 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz",
178 | "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==",
179 | "cpu": [
180 | "loong64"
181 | ],
182 | "dev": true,
183 | "optional": true,
184 | "os": [
185 | "linux"
186 | ],
187 | "engines": {
188 | "node": ">=12"
189 | }
190 | },
191 | "node_modules/@esbuild/linux-mips64el": {
192 | "version": "0.18.20",
193 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz",
194 | "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==",
195 | "cpu": [
196 | "mips64el"
197 | ],
198 | "dev": true,
199 | "optional": true,
200 | "os": [
201 | "linux"
202 | ],
203 | "engines": {
204 | "node": ">=12"
205 | }
206 | },
207 | "node_modules/@esbuild/linux-ppc64": {
208 | "version": "0.18.20",
209 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz",
210 | "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==",
211 | "cpu": [
212 | "ppc64"
213 | ],
214 | "dev": true,
215 | "optional": true,
216 | "os": [
217 | "linux"
218 | ],
219 | "engines": {
220 | "node": ">=12"
221 | }
222 | },
223 | "node_modules/@esbuild/linux-riscv64": {
224 | "version": "0.18.20",
225 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz",
226 | "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==",
227 | "cpu": [
228 | "riscv64"
229 | ],
230 | "dev": true,
231 | "optional": true,
232 | "os": [
233 | "linux"
234 | ],
235 | "engines": {
236 | "node": ">=12"
237 | }
238 | },
239 | "node_modules/@esbuild/linux-s390x": {
240 | "version": "0.18.20",
241 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz",
242 | "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==",
243 | "cpu": [
244 | "s390x"
245 | ],
246 | "dev": true,
247 | "optional": true,
248 | "os": [
249 | "linux"
250 | ],
251 | "engines": {
252 | "node": ">=12"
253 | }
254 | },
255 | "node_modules/@esbuild/linux-x64": {
256 | "version": "0.18.20",
257 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz",
258 | "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==",
259 | "cpu": [
260 | "x64"
261 | ],
262 | "dev": true,
263 | "optional": true,
264 | "os": [
265 | "linux"
266 | ],
267 | "engines": {
268 | "node": ">=12"
269 | }
270 | },
271 | "node_modules/@esbuild/netbsd-x64": {
272 | "version": "0.18.20",
273 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz",
274 | "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==",
275 | "cpu": [
276 | "x64"
277 | ],
278 | "dev": true,
279 | "optional": true,
280 | "os": [
281 | "netbsd"
282 | ],
283 | "engines": {
284 | "node": ">=12"
285 | }
286 | },
287 | "node_modules/@esbuild/openbsd-x64": {
288 | "version": "0.18.20",
289 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz",
290 | "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==",
291 | "cpu": [
292 | "x64"
293 | ],
294 | "dev": true,
295 | "optional": true,
296 | "os": [
297 | "openbsd"
298 | ],
299 | "engines": {
300 | "node": ">=12"
301 | }
302 | },
303 | "node_modules/@esbuild/sunos-x64": {
304 | "version": "0.18.20",
305 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz",
306 | "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==",
307 | "cpu": [
308 | "x64"
309 | ],
310 | "dev": true,
311 | "optional": true,
312 | "os": [
313 | "sunos"
314 | ],
315 | "engines": {
316 | "node": ">=12"
317 | }
318 | },
319 | "node_modules/@esbuild/win32-arm64": {
320 | "version": "0.18.20",
321 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz",
322 | "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==",
323 | "cpu": [
324 | "arm64"
325 | ],
326 | "dev": true,
327 | "optional": true,
328 | "os": [
329 | "win32"
330 | ],
331 | "engines": {
332 | "node": ">=12"
333 | }
334 | },
335 | "node_modules/@esbuild/win32-ia32": {
336 | "version": "0.18.20",
337 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz",
338 | "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==",
339 | "cpu": [
340 | "ia32"
341 | ],
342 | "dev": true,
343 | "optional": true,
344 | "os": [
345 | "win32"
346 | ],
347 | "engines": {
348 | "node": ">=12"
349 | }
350 | },
351 | "node_modules/@esbuild/win32-x64": {
352 | "version": "0.18.20",
353 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz",
354 | "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==",
355 | "cpu": [
356 | "x64"
357 | ],
358 | "dev": true,
359 | "optional": true,
360 | "os": [
361 | "win32"
362 | ],
363 | "engines": {
364 | "node": ">=12"
365 | }
366 | },
367 | "node_modules/esbuild": {
368 | "version": "0.18.20",
369 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz",
370 | "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==",
371 | "dev": true,
372 | "hasInstallScript": true,
373 | "bin": {
374 | "esbuild": "bin/esbuild"
375 | },
376 | "engines": {
377 | "node": ">=12"
378 | },
379 | "optionalDependencies": {
380 | "@esbuild/android-arm": "0.18.20",
381 | "@esbuild/android-arm64": "0.18.20",
382 | "@esbuild/android-x64": "0.18.20",
383 | "@esbuild/darwin-arm64": "0.18.20",
384 | "@esbuild/darwin-x64": "0.18.20",
385 | "@esbuild/freebsd-arm64": "0.18.20",
386 | "@esbuild/freebsd-x64": "0.18.20",
387 | "@esbuild/linux-arm": "0.18.20",
388 | "@esbuild/linux-arm64": "0.18.20",
389 | "@esbuild/linux-ia32": "0.18.20",
390 | "@esbuild/linux-loong64": "0.18.20",
391 | "@esbuild/linux-mips64el": "0.18.20",
392 | "@esbuild/linux-ppc64": "0.18.20",
393 | "@esbuild/linux-riscv64": "0.18.20",
394 | "@esbuild/linux-s390x": "0.18.20",
395 | "@esbuild/linux-x64": "0.18.20",
396 | "@esbuild/netbsd-x64": "0.18.20",
397 | "@esbuild/openbsd-x64": "0.18.20",
398 | "@esbuild/sunos-x64": "0.18.20",
399 | "@esbuild/win32-arm64": "0.18.20",
400 | "@esbuild/win32-ia32": "0.18.20",
401 | "@esbuild/win32-x64": "0.18.20"
402 | }
403 | },
404 | "node_modules/fsevents": {
405 | "version": "2.3.3",
406 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
407 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
408 | "dev": true,
409 | "hasInstallScript": true,
410 | "optional": true,
411 | "os": [
412 | "darwin"
413 | ],
414 | "engines": {
415 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
416 | }
417 | },
418 | "node_modules/nanoid": {
419 | "version": "3.3.6",
420 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz",
421 | "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==",
422 | "dev": true,
423 | "funding": [
424 | {
425 | "type": "github",
426 | "url": "https://github.com/sponsors/ai"
427 | }
428 | ],
429 | "bin": {
430 | "nanoid": "bin/nanoid.cjs"
431 | },
432 | "engines": {
433 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
434 | }
435 | },
436 | "node_modules/picocolors": {
437 | "version": "1.0.0",
438 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
439 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==",
440 | "dev": true
441 | },
442 | "node_modules/postcss": {
443 | "version": "8.4.29",
444 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.29.tgz",
445 | "integrity": "sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==",
446 | "dev": true,
447 | "funding": [
448 | {
449 | "type": "opencollective",
450 | "url": "https://opencollective.com/postcss/"
451 | },
452 | {
453 | "type": "tidelift",
454 | "url": "https://tidelift.com/funding/github/npm/postcss"
455 | },
456 | {
457 | "type": "github",
458 | "url": "https://github.com/sponsors/ai"
459 | }
460 | ],
461 | "dependencies": {
462 | "nanoid": "^3.3.6",
463 | "picocolors": "^1.0.0",
464 | "source-map-js": "^1.0.2"
465 | },
466 | "engines": {
467 | "node": "^10 || ^12 || >=14"
468 | }
469 | },
470 | "node_modules/rollup": {
471 | "version": "3.28.1",
472 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.28.1.tgz",
473 | "integrity": "sha512-R9OMQmIHJm9znrU3m3cpE8uhN0fGdXiawME7aZIpQqvpS/85+Vt1Hq1/yVIcYfOmaQiHjvXkQAoJukvLpau6Yw==",
474 | "dev": true,
475 | "bin": {
476 | "rollup": "dist/bin/rollup"
477 | },
478 | "engines": {
479 | "node": ">=14.18.0",
480 | "npm": ">=8.0.0"
481 | },
482 | "optionalDependencies": {
483 | "fsevents": "~2.3.2"
484 | }
485 | },
486 | "node_modules/source-map-js": {
487 | "version": "1.0.2",
488 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
489 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==",
490 | "dev": true,
491 | "engines": {
492 | "node": ">=0.10.0"
493 | }
494 | },
495 | "node_modules/typescript": {
496 | "version": "5.2.2",
497 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz",
498 | "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==",
499 | "dev": true,
500 | "bin": {
501 | "tsc": "bin/tsc",
502 | "tsserver": "bin/tsserver"
503 | },
504 | "engines": {
505 | "node": ">=14.17"
506 | }
507 | },
508 | "node_modules/vite": {
509 | "version": "4.4.9",
510 | "resolved": "https://registry.npmjs.org/vite/-/vite-4.4.9.tgz",
511 | "integrity": "sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==",
512 | "dev": true,
513 | "dependencies": {
514 | "esbuild": "^0.18.10",
515 | "postcss": "^8.4.27",
516 | "rollup": "^3.27.1"
517 | },
518 | "bin": {
519 | "vite": "bin/vite.js"
520 | },
521 | "engines": {
522 | "node": "^14.18.0 || >=16.0.0"
523 | },
524 | "funding": {
525 | "url": "https://github.com/vitejs/vite?sponsor=1"
526 | },
527 | "optionalDependencies": {
528 | "fsevents": "~2.3.2"
529 | },
530 | "peerDependencies": {
531 | "@types/node": ">= 14",
532 | "less": "*",
533 | "lightningcss": "^1.21.0",
534 | "sass": "*",
535 | "stylus": "*",
536 | "sugarss": "*",
537 | "terser": "^5.4.0"
538 | },
539 | "peerDependenciesMeta": {
540 | "@types/node": {
541 | "optional": true
542 | },
543 | "less": {
544 | "optional": true
545 | },
546 | "lightningcss": {
547 | "optional": true
548 | },
549 | "sass": {
550 | "optional": true
551 | },
552 | "stylus": {
553 | "optional": true
554 | },
555 | "sugarss": {
556 | "optional": true
557 | },
558 | "terser": {
559 | "optional": true
560 | }
561 | }
562 | }
563 | }
564 | }
565 |
--------------------------------------------------------------------------------
/Cargo.lock:
--------------------------------------------------------------------------------
1 | # This file is automatically @generated by Cargo.
2 | # It is not intended for manual editing.
3 | version = 3
4 |
5 | [[package]]
6 | name = "addr2line"
7 | version = "0.20.0"
8 | source = "registry+https://github.com/rust-lang/crates.io-index"
9 | checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3"
10 | dependencies = [
11 | "gimli",
12 | ]
13 |
14 | [[package]]
15 | name = "adler"
16 | version = "1.0.2"
17 | source = "registry+https://github.com/rust-lang/crates.io-index"
18 | checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
19 |
20 | [[package]]
21 | name = "anstream"
22 | version = "0.3.2"
23 | source = "registry+https://github.com/rust-lang/crates.io-index"
24 | checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163"
25 | dependencies = [
26 | "anstyle",
27 | "anstyle-parse",
28 | "anstyle-query",
29 | "anstyle-wincon",
30 | "colorchoice",
31 | "is-terminal",
32 | "utf8parse",
33 | ]
34 |
35 | [[package]]
36 | name = "anstyle"
37 | version = "1.0.1"
38 | source = "registry+https://github.com/rust-lang/crates.io-index"
39 | checksum = "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd"
40 |
41 | [[package]]
42 | name = "anstyle-parse"
43 | version = "0.2.1"
44 | source = "registry+https://github.com/rust-lang/crates.io-index"
45 | checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333"
46 | dependencies = [
47 | "utf8parse",
48 | ]
49 |
50 | [[package]]
51 | name = "anstyle-query"
52 | version = "1.0.0"
53 | source = "registry+https://github.com/rust-lang/crates.io-index"
54 | checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
55 | dependencies = [
56 | "windows-sys",
57 | ]
58 |
59 | [[package]]
60 | name = "anstyle-wincon"
61 | version = "1.0.1"
62 | source = "registry+https://github.com/rust-lang/crates.io-index"
63 | checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188"
64 | dependencies = [
65 | "anstyle",
66 | "windows-sys",
67 | ]
68 |
69 | [[package]]
70 | name = "anyhow"
71 | version = "1.0.72"
72 | source = "registry+https://github.com/rust-lang/crates.io-index"
73 | checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854"
74 |
75 | [[package]]
76 | name = "autocfg"
77 | version = "1.1.0"
78 | source = "registry+https://github.com/rust-lang/crates.io-index"
79 | checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
80 |
81 | [[package]]
82 | name = "backtrace"
83 | version = "0.3.68"
84 | source = "registry+https://github.com/rust-lang/crates.io-index"
85 | checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12"
86 | dependencies = [
87 | "addr2line",
88 | "cc",
89 | "cfg-if",
90 | "libc",
91 | "miniz_oxide",
92 | "object",
93 | "rustc-demangle",
94 | ]
95 |
96 | [[package]]
97 | name = "bitflags"
98 | version = "1.3.2"
99 | source = "registry+https://github.com/rust-lang/crates.io-index"
100 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
101 |
102 | [[package]]
103 | name = "bitflags"
104 | version = "2.3.3"
105 | source = "registry+https://github.com/rust-lang/crates.io-index"
106 | checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42"
107 |
108 | [[package]]
109 | name = "block-buffer"
110 | version = "0.10.4"
111 | source = "registry+https://github.com/rust-lang/crates.io-index"
112 | checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
113 | dependencies = [
114 | "generic-array",
115 | ]
116 |
117 | [[package]]
118 | name = "byteorder"
119 | version = "1.4.3"
120 | source = "registry+https://github.com/rust-lang/crates.io-index"
121 | checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
122 |
123 | [[package]]
124 | name = "bytes"
125 | version = "1.4.0"
126 | source = "registry+https://github.com/rust-lang/crates.io-index"
127 | checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
128 |
129 | [[package]]
130 | name = "cc"
131 | version = "1.0.79"
132 | source = "registry+https://github.com/rust-lang/crates.io-index"
133 | checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
134 |
135 | [[package]]
136 | name = "cfg-if"
137 | version = "1.0.0"
138 | source = "registry+https://github.com/rust-lang/crates.io-index"
139 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
140 |
141 | [[package]]
142 | name = "clap"
143 | version = "4.3.19"
144 | source = "registry+https://github.com/rust-lang/crates.io-index"
145 | checksum = "5fd304a20bff958a57f04c4e96a2e7594cc4490a0e809cbd48bb6437edaa452d"
146 | dependencies = [
147 | "clap_builder",
148 | "clap_derive",
149 | "once_cell",
150 | ]
151 |
152 | [[package]]
153 | name = "clap_builder"
154 | version = "4.3.19"
155 | source = "registry+https://github.com/rust-lang/crates.io-index"
156 | checksum = "01c6a3f08f1fe5662a35cfe393aec09c4df95f60ee93b7556505260f75eee9e1"
157 | dependencies = [
158 | "anstream",
159 | "anstyle",
160 | "clap_lex",
161 | "strsim",
162 | ]
163 |
164 | [[package]]
165 | name = "clap_derive"
166 | version = "4.3.12"
167 | source = "registry+https://github.com/rust-lang/crates.io-index"
168 | checksum = "54a9bb5758fc5dfe728d1019941681eccaf0cf8a4189b692a0ee2f2ecf90a050"
169 | dependencies = [
170 | "heck",
171 | "proc-macro2",
172 | "quote",
173 | "syn",
174 | ]
175 |
176 | [[package]]
177 | name = "clap_lex"
178 | version = "0.5.0"
179 | source = "registry+https://github.com/rust-lang/crates.io-index"
180 | checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
181 |
182 | [[package]]
183 | name = "colorchoice"
184 | version = "1.0.0"
185 | source = "registry+https://github.com/rust-lang/crates.io-index"
186 | checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
187 |
188 | [[package]]
189 | name = "cpufeatures"
190 | version = "0.2.9"
191 | source = "registry+https://github.com/rust-lang/crates.io-index"
192 | checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1"
193 | dependencies = [
194 | "libc",
195 | ]
196 |
197 | [[package]]
198 | name = "crypto-common"
199 | version = "0.1.6"
200 | source = "registry+https://github.com/rust-lang/crates.io-index"
201 | checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
202 | dependencies = [
203 | "generic-array",
204 | "typenum",
205 | ]
206 |
207 | [[package]]
208 | name = "data-encoding"
209 | version = "2.4.0"
210 | source = "registry+https://github.com/rust-lang/crates.io-index"
211 | checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308"
212 |
213 | [[package]]
214 | name = "digest"
215 | version = "0.10.7"
216 | source = "registry+https://github.com/rust-lang/crates.io-index"
217 | checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
218 | dependencies = [
219 | "block-buffer",
220 | "crypto-common",
221 | ]
222 |
223 | [[package]]
224 | name = "errno"
225 | version = "0.3.1"
226 | source = "registry+https://github.com/rust-lang/crates.io-index"
227 | checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
228 | dependencies = [
229 | "errno-dragonfly",
230 | "libc",
231 | "windows-sys",
232 | ]
233 |
234 | [[package]]
235 | name = "errno-dragonfly"
236 | version = "0.1.2"
237 | source = "registry+https://github.com/rust-lang/crates.io-index"
238 | checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
239 | dependencies = [
240 | "cc",
241 | "libc",
242 | ]
243 |
244 | [[package]]
245 | name = "fnv"
246 | version = "1.0.7"
247 | source = "registry+https://github.com/rust-lang/crates.io-index"
248 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
249 |
250 | [[package]]
251 | name = "form_urlencoded"
252 | version = "1.2.0"
253 | source = "registry+https://github.com/rust-lang/crates.io-index"
254 | checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
255 | dependencies = [
256 | "percent-encoding",
257 | ]
258 |
259 | [[package]]
260 | name = "futures-core"
261 | version = "0.3.28"
262 | source = "registry+https://github.com/rust-lang/crates.io-index"
263 | checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
264 |
265 | [[package]]
266 | name = "futures-macro"
267 | version = "0.3.28"
268 | source = "registry+https://github.com/rust-lang/crates.io-index"
269 | checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
270 | dependencies = [
271 | "proc-macro2",
272 | "quote",
273 | "syn",
274 | ]
275 |
276 | [[package]]
277 | name = "futures-sink"
278 | version = "0.3.28"
279 | source = "registry+https://github.com/rust-lang/crates.io-index"
280 | checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
281 |
282 | [[package]]
283 | name = "futures-task"
284 | version = "0.3.28"
285 | source = "registry+https://github.com/rust-lang/crates.io-index"
286 | checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
287 |
288 | [[package]]
289 | name = "futures-util"
290 | version = "0.3.28"
291 | source = "registry+https://github.com/rust-lang/crates.io-index"
292 | checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
293 | dependencies = [
294 | "futures-core",
295 | "futures-macro",
296 | "futures-sink",
297 | "futures-task",
298 | "pin-project-lite",
299 | "pin-utils",
300 | "slab",
301 | ]
302 |
303 | [[package]]
304 | name = "generic-array"
305 | version = "0.14.7"
306 | source = "registry+https://github.com/rust-lang/crates.io-index"
307 | checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
308 | dependencies = [
309 | "typenum",
310 | "version_check",
311 | ]
312 |
313 | [[package]]
314 | name = "getrandom"
315 | version = "0.2.10"
316 | source = "registry+https://github.com/rust-lang/crates.io-index"
317 | checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
318 | dependencies = [
319 | "cfg-if",
320 | "libc",
321 | "wasi",
322 | ]
323 |
324 | [[package]]
325 | name = "gimli"
326 | version = "0.27.3"
327 | source = "registry+https://github.com/rust-lang/crates.io-index"
328 | checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e"
329 |
330 | [[package]]
331 | name = "heck"
332 | version = "0.4.1"
333 | source = "registry+https://github.com/rust-lang/crates.io-index"
334 | checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
335 |
336 | [[package]]
337 | name = "hermit-abi"
338 | version = "0.3.2"
339 | source = "registry+https://github.com/rust-lang/crates.io-index"
340 | checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
341 |
342 | [[package]]
343 | name = "http"
344 | version = "0.2.9"
345 | source = "registry+https://github.com/rust-lang/crates.io-index"
346 | checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
347 | dependencies = [
348 | "bytes",
349 | "fnv",
350 | "itoa",
351 | ]
352 |
353 | [[package]]
354 | name = "httparse"
355 | version = "1.8.0"
356 | source = "registry+https://github.com/rust-lang/crates.io-index"
357 | checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
358 |
359 | [[package]]
360 | name = "idna"
361 | version = "0.4.0"
362 | source = "registry+https://github.com/rust-lang/crates.io-index"
363 | checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
364 | dependencies = [
365 | "unicode-bidi",
366 | "unicode-normalization",
367 | ]
368 |
369 | [[package]]
370 | name = "is-terminal"
371 | version = "0.4.9"
372 | source = "registry+https://github.com/rust-lang/crates.io-index"
373 | checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
374 | dependencies = [
375 | "hermit-abi",
376 | "rustix",
377 | "windows-sys",
378 | ]
379 |
380 | [[package]]
381 | name = "itoa"
382 | version = "1.0.9"
383 | source = "registry+https://github.com/rust-lang/crates.io-index"
384 | checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
385 |
386 | [[package]]
387 | name = "javascwipt-performance"
388 | version = "0.1.0"
389 | dependencies = [
390 | "anyhow",
391 | "clap",
392 | "futures-util",
393 | "tokio",
394 | "tokio-tungstenite",
395 | "url",
396 | ]
397 |
398 | [[package]]
399 | name = "libc"
400 | version = "0.2.147"
401 | source = "registry+https://github.com/rust-lang/crates.io-index"
402 | checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
403 |
404 | [[package]]
405 | name = "linux-raw-sys"
406 | version = "0.4.3"
407 | source = "registry+https://github.com/rust-lang/crates.io-index"
408 | checksum = "09fc20d2ca12cb9f044c93e3bd6d32d523e6e2ec3db4f7b2939cd99026ecd3f0"
409 |
410 | [[package]]
411 | name = "lock_api"
412 | version = "0.4.10"
413 | source = "registry+https://github.com/rust-lang/crates.io-index"
414 | checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
415 | dependencies = [
416 | "autocfg",
417 | "scopeguard",
418 | ]
419 |
420 | [[package]]
421 | name = "log"
422 | version = "0.4.19"
423 | source = "registry+https://github.com/rust-lang/crates.io-index"
424 | checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
425 |
426 | [[package]]
427 | name = "memchr"
428 | version = "2.5.0"
429 | source = "registry+https://github.com/rust-lang/crates.io-index"
430 | checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
431 |
432 | [[package]]
433 | name = "miniz_oxide"
434 | version = "0.7.1"
435 | source = "registry+https://github.com/rust-lang/crates.io-index"
436 | checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
437 | dependencies = [
438 | "adler",
439 | ]
440 |
441 | [[package]]
442 | name = "mio"
443 | version = "0.8.8"
444 | source = "registry+https://github.com/rust-lang/crates.io-index"
445 | checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
446 | dependencies = [
447 | "libc",
448 | "wasi",
449 | "windows-sys",
450 | ]
451 |
452 | [[package]]
453 | name = "num_cpus"
454 | version = "1.16.0"
455 | source = "registry+https://github.com/rust-lang/crates.io-index"
456 | checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
457 | dependencies = [
458 | "hermit-abi",
459 | "libc",
460 | ]
461 |
462 | [[package]]
463 | name = "object"
464 | version = "0.31.1"
465 | source = "registry+https://github.com/rust-lang/crates.io-index"
466 | checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1"
467 | dependencies = [
468 | "memchr",
469 | ]
470 |
471 | [[package]]
472 | name = "once_cell"
473 | version = "1.18.0"
474 | source = "registry+https://github.com/rust-lang/crates.io-index"
475 | checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
476 |
477 | [[package]]
478 | name = "parking_lot"
479 | version = "0.12.1"
480 | source = "registry+https://github.com/rust-lang/crates.io-index"
481 | checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
482 | dependencies = [
483 | "lock_api",
484 | "parking_lot_core",
485 | ]
486 |
487 | [[package]]
488 | name = "parking_lot_core"
489 | version = "0.9.8"
490 | source = "registry+https://github.com/rust-lang/crates.io-index"
491 | checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
492 | dependencies = [
493 | "cfg-if",
494 | "libc",
495 | "redox_syscall",
496 | "smallvec",
497 | "windows-targets",
498 | ]
499 |
500 | [[package]]
501 | name = "percent-encoding"
502 | version = "2.3.0"
503 | source = "registry+https://github.com/rust-lang/crates.io-index"
504 | checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
505 |
506 | [[package]]
507 | name = "pin-project-lite"
508 | version = "0.2.10"
509 | source = "registry+https://github.com/rust-lang/crates.io-index"
510 | checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57"
511 |
512 | [[package]]
513 | name = "pin-utils"
514 | version = "0.1.0"
515 | source = "registry+https://github.com/rust-lang/crates.io-index"
516 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
517 |
518 | [[package]]
519 | name = "ppv-lite86"
520 | version = "0.2.17"
521 | source = "registry+https://github.com/rust-lang/crates.io-index"
522 | checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
523 |
524 | [[package]]
525 | name = "proc-macro2"
526 | version = "1.0.66"
527 | source = "registry+https://github.com/rust-lang/crates.io-index"
528 | checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
529 | dependencies = [
530 | "unicode-ident",
531 | ]
532 |
533 | [[package]]
534 | name = "quote"
535 | version = "1.0.32"
536 | source = "registry+https://github.com/rust-lang/crates.io-index"
537 | checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965"
538 | dependencies = [
539 | "proc-macro2",
540 | ]
541 |
542 | [[package]]
543 | name = "rand"
544 | version = "0.8.5"
545 | source = "registry+https://github.com/rust-lang/crates.io-index"
546 | checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
547 | dependencies = [
548 | "libc",
549 | "rand_chacha",
550 | "rand_core",
551 | ]
552 |
553 | [[package]]
554 | name = "rand_chacha"
555 | version = "0.3.1"
556 | source = "registry+https://github.com/rust-lang/crates.io-index"
557 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
558 | dependencies = [
559 | "ppv-lite86",
560 | "rand_core",
561 | ]
562 |
563 | [[package]]
564 | name = "rand_core"
565 | version = "0.6.4"
566 | source = "registry+https://github.com/rust-lang/crates.io-index"
567 | checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
568 | dependencies = [
569 | "getrandom",
570 | ]
571 |
572 | [[package]]
573 | name = "redox_syscall"
574 | version = "0.3.5"
575 | source = "registry+https://github.com/rust-lang/crates.io-index"
576 | checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
577 | dependencies = [
578 | "bitflags 1.3.2",
579 | ]
580 |
581 | [[package]]
582 | name = "rustc-demangle"
583 | version = "0.1.23"
584 | source = "registry+https://github.com/rust-lang/crates.io-index"
585 | checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
586 |
587 | [[package]]
588 | name = "rustix"
589 | version = "0.38.4"
590 | source = "registry+https://github.com/rust-lang/crates.io-index"
591 | checksum = "0a962918ea88d644592894bc6dc55acc6c0956488adcebbfb6e273506b7fd6e5"
592 | dependencies = [
593 | "bitflags 2.3.3",
594 | "errno",
595 | "libc",
596 | "linux-raw-sys",
597 | "windows-sys",
598 | ]
599 |
600 | [[package]]
601 | name = "scopeguard"
602 | version = "1.2.0"
603 | source = "registry+https://github.com/rust-lang/crates.io-index"
604 | checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
605 |
606 | [[package]]
607 | name = "sha1"
608 | version = "0.10.5"
609 | source = "registry+https://github.com/rust-lang/crates.io-index"
610 | checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
611 | dependencies = [
612 | "cfg-if",
613 | "cpufeatures",
614 | "digest",
615 | ]
616 |
617 | [[package]]
618 | name = "signal-hook-registry"
619 | version = "1.4.1"
620 | source = "registry+https://github.com/rust-lang/crates.io-index"
621 | checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
622 | dependencies = [
623 | "libc",
624 | ]
625 |
626 | [[package]]
627 | name = "slab"
628 | version = "0.4.8"
629 | source = "registry+https://github.com/rust-lang/crates.io-index"
630 | checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
631 | dependencies = [
632 | "autocfg",
633 | ]
634 |
635 | [[package]]
636 | name = "smallvec"
637 | version = "1.11.0"
638 | source = "registry+https://github.com/rust-lang/crates.io-index"
639 | checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9"
640 |
641 | [[package]]
642 | name = "socket2"
643 | version = "0.4.9"
644 | source = "registry+https://github.com/rust-lang/crates.io-index"
645 | checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
646 | dependencies = [
647 | "libc",
648 | "winapi",
649 | ]
650 |
651 | [[package]]
652 | name = "strsim"
653 | version = "0.10.0"
654 | source = "registry+https://github.com/rust-lang/crates.io-index"
655 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
656 |
657 | [[package]]
658 | name = "syn"
659 | version = "2.0.27"
660 | source = "registry+https://github.com/rust-lang/crates.io-index"
661 | checksum = "b60f673f44a8255b9c8c657daf66a596d435f2da81a555b06dc644d080ba45e0"
662 | dependencies = [
663 | "proc-macro2",
664 | "quote",
665 | "unicode-ident",
666 | ]
667 |
668 | [[package]]
669 | name = "thiserror"
670 | version = "1.0.44"
671 | source = "registry+https://github.com/rust-lang/crates.io-index"
672 | checksum = "611040a08a0439f8248d1990b111c95baa9c704c805fa1f62104b39655fd7f90"
673 | dependencies = [
674 | "thiserror-impl",
675 | ]
676 |
677 | [[package]]
678 | name = "thiserror-impl"
679 | version = "1.0.44"
680 | source = "registry+https://github.com/rust-lang/crates.io-index"
681 | checksum = "090198534930841fab3a5d1bb637cde49e339654e606195f8d9c76eeb081dc96"
682 | dependencies = [
683 | "proc-macro2",
684 | "quote",
685 | "syn",
686 | ]
687 |
688 | [[package]]
689 | name = "tinyvec"
690 | version = "1.6.0"
691 | source = "registry+https://github.com/rust-lang/crates.io-index"
692 | checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
693 | dependencies = [
694 | "tinyvec_macros",
695 | ]
696 |
697 | [[package]]
698 | name = "tinyvec_macros"
699 | version = "0.1.1"
700 | source = "registry+https://github.com/rust-lang/crates.io-index"
701 | checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
702 |
703 | [[package]]
704 | name = "tokio"
705 | version = "1.29.1"
706 | source = "registry+https://github.com/rust-lang/crates.io-index"
707 | checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da"
708 | dependencies = [
709 | "autocfg",
710 | "backtrace",
711 | "bytes",
712 | "libc",
713 | "mio",
714 | "num_cpus",
715 | "parking_lot",
716 | "pin-project-lite",
717 | "signal-hook-registry",
718 | "socket2",
719 | "tokio-macros",
720 | "windows-sys",
721 | ]
722 |
723 | [[package]]
724 | name = "tokio-macros"
725 | version = "2.1.0"
726 | source = "registry+https://github.com/rust-lang/crates.io-index"
727 | checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
728 | dependencies = [
729 | "proc-macro2",
730 | "quote",
731 | "syn",
732 | ]
733 |
734 | [[package]]
735 | name = "tokio-tungstenite"
736 | version = "0.20.0"
737 | source = "registry+https://github.com/rust-lang/crates.io-index"
738 | checksum = "2b2dbec703c26b00d74844519606ef15d09a7d6857860f84ad223dec002ddea2"
739 | dependencies = [
740 | "futures-util",
741 | "log",
742 | "tokio",
743 | "tungstenite",
744 | ]
745 |
746 | [[package]]
747 | name = "tungstenite"
748 | version = "0.20.0"
749 | source = "registry+https://github.com/rust-lang/crates.io-index"
750 | checksum = "e862a1c4128df0112ab625f55cd5c934bcb4312ba80b39ae4b4835a3fd58e649"
751 | dependencies = [
752 | "byteorder",
753 | "bytes",
754 | "data-encoding",
755 | "http",
756 | "httparse",
757 | "log",
758 | "rand",
759 | "sha1",
760 | "thiserror",
761 | "url",
762 | "utf-8",
763 | ]
764 |
765 | [[package]]
766 | name = "typenum"
767 | version = "1.16.0"
768 | source = "registry+https://github.com/rust-lang/crates.io-index"
769 | checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
770 |
771 | [[package]]
772 | name = "unicode-bidi"
773 | version = "0.3.13"
774 | source = "registry+https://github.com/rust-lang/crates.io-index"
775 | checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
776 |
777 | [[package]]
778 | name = "unicode-ident"
779 | version = "1.0.11"
780 | source = "registry+https://github.com/rust-lang/crates.io-index"
781 | checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c"
782 |
783 | [[package]]
784 | name = "unicode-normalization"
785 | version = "0.1.22"
786 | source = "registry+https://github.com/rust-lang/crates.io-index"
787 | checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
788 | dependencies = [
789 | "tinyvec",
790 | ]
791 |
792 | [[package]]
793 | name = "url"
794 | version = "2.4.0"
795 | source = "registry+https://github.com/rust-lang/crates.io-index"
796 | checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
797 | dependencies = [
798 | "form_urlencoded",
799 | "idna",
800 | "percent-encoding",
801 | ]
802 |
803 | [[package]]
804 | name = "utf-8"
805 | version = "0.7.6"
806 | source = "registry+https://github.com/rust-lang/crates.io-index"
807 | checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
808 |
809 | [[package]]
810 | name = "utf8parse"
811 | version = "0.2.1"
812 | source = "registry+https://github.com/rust-lang/crates.io-index"
813 | checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
814 |
815 | [[package]]
816 | name = "version_check"
817 | version = "0.9.4"
818 | source = "registry+https://github.com/rust-lang/crates.io-index"
819 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
820 |
821 | [[package]]
822 | name = "wasi"
823 | version = "0.11.0+wasi-snapshot-preview1"
824 | source = "registry+https://github.com/rust-lang/crates.io-index"
825 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
826 |
827 | [[package]]
828 | name = "winapi"
829 | version = "0.3.9"
830 | source = "registry+https://github.com/rust-lang/crates.io-index"
831 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
832 | dependencies = [
833 | "winapi-i686-pc-windows-gnu",
834 | "winapi-x86_64-pc-windows-gnu",
835 | ]
836 |
837 | [[package]]
838 | name = "winapi-i686-pc-windows-gnu"
839 | version = "0.4.0"
840 | source = "registry+https://github.com/rust-lang/crates.io-index"
841 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
842 |
843 | [[package]]
844 | name = "winapi-x86_64-pc-windows-gnu"
845 | version = "0.4.0"
846 | source = "registry+https://github.com/rust-lang/crates.io-index"
847 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
848 |
849 | [[package]]
850 | name = "windows-sys"
851 | version = "0.48.0"
852 | source = "registry+https://github.com/rust-lang/crates.io-index"
853 | checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
854 | dependencies = [
855 | "windows-targets",
856 | ]
857 |
858 | [[package]]
859 | name = "windows-targets"
860 | version = "0.48.1"
861 | source = "registry+https://github.com/rust-lang/crates.io-index"
862 | checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
863 | dependencies = [
864 | "windows_aarch64_gnullvm",
865 | "windows_aarch64_msvc",
866 | "windows_i686_gnu",
867 | "windows_i686_msvc",
868 | "windows_x86_64_gnu",
869 | "windows_x86_64_gnullvm",
870 | "windows_x86_64_msvc",
871 | ]
872 |
873 | [[package]]
874 | name = "windows_aarch64_gnullvm"
875 | version = "0.48.0"
876 | source = "registry+https://github.com/rust-lang/crates.io-index"
877 | checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
878 |
879 | [[package]]
880 | name = "windows_aarch64_msvc"
881 | version = "0.48.0"
882 | source = "registry+https://github.com/rust-lang/crates.io-index"
883 | checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
884 |
885 | [[package]]
886 | name = "windows_i686_gnu"
887 | version = "0.48.0"
888 | source = "registry+https://github.com/rust-lang/crates.io-index"
889 | checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
890 |
891 | [[package]]
892 | name = "windows_i686_msvc"
893 | version = "0.48.0"
894 | source = "registry+https://github.com/rust-lang/crates.io-index"
895 | checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
896 |
897 | [[package]]
898 | name = "windows_x86_64_gnu"
899 | version = "0.48.0"
900 | source = "registry+https://github.com/rust-lang/crates.io-index"
901 | checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
902 |
903 | [[package]]
904 | name = "windows_x86_64_gnullvm"
905 | version = "0.48.0"
906 | source = "registry+https://github.com/rust-lang/crates.io-index"
907 | checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
908 |
909 | [[package]]
910 | name = "windows_x86_64_msvc"
911 | version = "0.48.0"
912 | source = "registry+https://github.com/rust-lang/crates.io-index"
913 | checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
914 |
--------------------------------------------------------------------------------