├── .cargo └── config.toml ├── .editorconfig ├── .env.example ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE.md ├── Makefile ├── README.md ├── brioche.lock ├── crates ├── brioche-core │ ├── .sqlx │ │ ├── query-093ab60c69f2fc825e796b2de9957035a5e716cba9c24a8449e5b9419b460d12.json │ │ ├── query-63badf53bce7944557144c50345f0c5c8b68089524048fe50ebe405bbef231d5.json │ │ ├── query-862f68a7574af5aa4cc97103251e1e776199eee359282b45e420e4e40edbc622.json │ │ ├── query-8a2dea840694ec14ff55a08a9111d0a3e850c9f5e8ae294459ff2666565f7eb6.json │ │ ├── query-8d403db542ca6af7ddf06fa925216da825b07c499476c924de610068e5a53153.json │ │ ├── query-d40f88621ae7af22b3ff5ff5e1571a7da9d88ce95bead36538ac677ca7275a77.json │ │ ├── query-d7e32665a8d362b19f6cc17061de9a25b69332ec65c9e02ab42f9a9cd7cf433a.json │ │ └── query-e25e7f41e88210d4fe76160788081be6823ebac2b66c34f278d58b3085c4a853.json │ ├── Cargo.toml │ ├── Makefile │ ├── benches │ │ ├── bake.rs │ │ ├── blob.rs │ │ ├── directory.rs │ │ └── input.rs │ ├── data │ │ └── .gitignore │ ├── migrations │ │ ├── 20230812234936_initial_schema.sql │ │ ├── 20230903082607_rename_builds_to_resolves.sql │ │ ├── 20230908034536_multiple_input_steps_per_resolve.sql │ │ ├── 20240412073418_add_project_resolves_table.sql │ │ ├── 20240415051245_add_child_resolves_table.sql │ │ ├── 20240415052028_simplify_resolves_table.sql │ │ ├── 20240421035442_rename_blob_id_to_blob_hash.sql │ │ ├── 20240422001037_separate_artifacts_table.sql │ │ └── 20240428205455_rename_artifacts_to_recipes_and_resolves_to_bakes.sql │ ├── runtime │ │ ├── .gitignore │ │ ├── .nvmrc │ │ ├── build.ts │ │ ├── dist │ │ │ └── index.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── check.ts │ │ │ ├── compat │ │ │ │ ├── console.ts │ │ │ │ ├── node │ │ │ │ │ ├── assert.cjs │ │ │ │ │ ├── buffer.cjs │ │ │ │ │ ├── crypto.cjs │ │ │ │ │ ├── events.cjs │ │ │ │ │ ├── fs.cjs │ │ │ │ │ ├── module.cjs │ │ │ │ │ ├── os.cjs │ │ │ │ │ ├── path.cjs │ │ │ │ │ ├── stream.cjs │ │ │ │ │ ├── url.cjs │ │ │ │ │ └── util.cjs │ │ │ │ ├── setup.cjs │ │ │ │ └── text-encoding.ts │ │ │ ├── eslint-common.ts │ │ │ ├── index.ts │ │ │ ├── lsp.ts │ │ │ └── ts-common.ts │ │ ├── tsconfig.json │ │ └── tslib │ │ │ ├── lib.d.ts │ │ │ ├── lib.decorators.d.ts │ │ │ ├── lib.decorators.legacy.d.ts │ │ │ ├── lib.dom.d.ts │ │ │ ├── lib.dom.iterable.d.ts │ │ │ ├── lib.es2015.collection.d.ts │ │ │ ├── lib.es2015.core.d.ts │ │ │ ├── lib.es2015.d.ts │ │ │ ├── lib.es2015.generator.d.ts │ │ │ ├── lib.es2015.iterable.d.ts │ │ │ ├── lib.es2015.promise.d.ts │ │ │ ├── lib.es2015.proxy.d.ts │ │ │ ├── lib.es2015.reflect.d.ts │ │ │ ├── lib.es2015.symbol.d.ts │ │ │ ├── lib.es2015.symbol.wellknown.d.ts │ │ │ ├── lib.es2016.array.include.d.ts │ │ │ ├── lib.es2016.d.ts │ │ │ ├── lib.es2016.full.d.ts │ │ │ ├── lib.es2017.d.ts │ │ │ ├── lib.es2017.full.d.ts │ │ │ ├── lib.es2017.intl.d.ts │ │ │ ├── lib.es2017.object.d.ts │ │ │ ├── lib.es2017.sharedmemory.d.ts │ │ │ ├── lib.es2017.string.d.ts │ │ │ ├── lib.es2017.typedarrays.d.ts │ │ │ ├── lib.es2018.asyncgenerator.d.ts │ │ │ ├── lib.es2018.asynciterable.d.ts │ │ │ ├── lib.es2018.d.ts │ │ │ ├── lib.es2018.full.d.ts │ │ │ ├── lib.es2018.intl.d.ts │ │ │ ├── lib.es2018.promise.d.ts │ │ │ ├── lib.es2018.regexp.d.ts │ │ │ ├── lib.es2019.array.d.ts │ │ │ ├── lib.es2019.d.ts │ │ │ ├── lib.es2019.full.d.ts │ │ │ ├── lib.es2019.intl.d.ts │ │ │ ├── lib.es2019.object.d.ts │ │ │ ├── lib.es2019.string.d.ts │ │ │ ├── lib.es2019.symbol.d.ts │ │ │ ├── lib.es2020.bigint.d.ts │ │ │ ├── lib.es2020.d.ts │ │ │ ├── lib.es2020.date.d.ts │ │ │ ├── lib.es2020.full.d.ts │ │ │ ├── lib.es2020.intl.d.ts │ │ │ ├── lib.es2020.number.d.ts │ │ │ ├── lib.es2020.promise.d.ts │ │ │ ├── lib.es2020.sharedmemory.d.ts │ │ │ ├── lib.es2020.string.d.ts │ │ │ ├── lib.es2020.symbol.wellknown.d.ts │ │ │ ├── lib.es2021.d.ts │ │ │ ├── lib.es2021.full.d.ts │ │ │ ├── lib.es2021.intl.d.ts │ │ │ ├── lib.es2021.promise.d.ts │ │ │ ├── lib.es2021.string.d.ts │ │ │ ├── lib.es2021.weakref.d.ts │ │ │ ├── lib.es2022.array.d.ts │ │ │ ├── lib.es2022.d.ts │ │ │ ├── lib.es2022.error.d.ts │ │ │ ├── lib.es2022.full.d.ts │ │ │ ├── lib.es2022.intl.d.ts │ │ │ ├── lib.es2022.object.d.ts │ │ │ ├── lib.es2022.regexp.d.ts │ │ │ ├── lib.es2022.sharedmemory.d.ts │ │ │ ├── lib.es2022.string.d.ts │ │ │ ├── lib.es2023.array.d.ts │ │ │ ├── lib.es2023.d.ts │ │ │ ├── lib.es2023.full.d.ts │ │ │ ├── lib.es5.d.ts │ │ │ ├── lib.es6.d.ts │ │ │ ├── lib.esnext.d.ts │ │ │ ├── lib.esnext.full.d.ts │ │ │ ├── lib.esnext.intl.d.ts │ │ │ ├── lib.scripthost.d.ts │ │ │ ├── lib.webworker.d.ts │ │ │ ├── lib.webworker.importscripts.d.ts │ │ │ └── lib.webworker.iterable.d.ts │ ├── src │ │ ├── bake.rs │ │ ├── bake │ │ │ ├── attach_resources.rs │ │ │ ├── collect_references.rs │ │ │ ├── download.rs │ │ │ ├── process.rs │ │ │ └── unarchive.rs │ │ ├── blob.rs │ │ ├── cache.rs │ │ ├── cache │ │ │ └── archive.rs │ │ ├── config.rs │ │ ├── download.rs │ │ ├── encoding.rs │ │ ├── fs_utils.rs │ │ ├── input.rs │ │ ├── lazy_bake.rs │ │ ├── lib.rs │ │ ├── object_store_utils.rs │ │ ├── output.rs │ │ ├── platform.rs │ │ ├── process_events.rs │ │ ├── process_events │ │ │ ├── display.rs │ │ │ ├── reader.rs │ │ │ └── writer.rs │ │ ├── project.rs │ │ ├── project │ │ │ ├── analyze.rs │ │ │ ├── artifact.rs │ │ │ ├── edit.rs │ │ │ └── load.rs │ │ ├── publish.rs │ │ ├── recipe.rs │ │ ├── references.rs │ │ ├── registry.rs │ │ ├── reporter.rs │ │ ├── reporter │ │ │ ├── console.rs │ │ │ ├── job.rs │ │ │ └── otel.rs │ │ ├── sandbox.rs │ │ ├── sandbox │ │ │ ├── linux_namespace.rs │ │ │ └── unsandboxed.rs │ │ ├── script.rs │ │ ├── script │ │ │ ├── bridge.rs │ │ │ ├── check.rs │ │ │ ├── compiler_host.rs │ │ │ ├── evaluate.rs │ │ │ ├── format.rs │ │ │ ├── js.rs │ │ │ ├── lsp.rs │ │ │ └── specifier.rs │ │ ├── sync.rs │ │ ├── utils.rs │ │ ├── utils │ │ │ ├── io.rs │ │ │ └── output_buffer.rs │ │ └── vfs.rs │ └── tests │ │ ├── bake_attach_resources.rs │ │ ├── bake_basic.rs │ │ ├── bake_cache.rs │ │ ├── bake_collect_references.rs │ │ ├── bake_download.rs │ │ ├── bake_glob.rs │ │ ├── bake_parallel.rs │ │ ├── bake_process.rs │ │ ├── bake_proxy.rs │ │ ├── cache_client.rs │ │ ├── directory.rs │ │ ├── input.rs │ │ ├── lazy_bake.rs │ │ ├── lsp_basic.rs │ │ ├── lsp_completions.rs │ │ ├── lsp_on_save.rs │ │ ├── object_store_utils_s3.rs │ │ ├── output.rs │ │ ├── process_events.rs │ │ ├── project_edit.rs │ │ ├── project_hash.rs │ │ ├── project_load.rs │ │ ├── project_load_cyclic.rs │ │ ├── recipe.rs │ │ ├── recipe_hash_stable.rs │ │ ├── script_check.rs │ │ ├── script_eval.rs │ │ ├── script_ops.rs │ │ ├── script_project_analyze.rs │ │ ├── script_specifiers.rs │ │ ├── sync_from_cache.rs │ │ └── sync_to_cache.rs ├── brioche-pack │ ├── Cargo.toml │ └── src │ │ ├── encoding.rs │ │ └── lib.rs ├── brioche-test-support │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── brioche │ ├── Cargo.toml │ ├── Makefile │ └── src │ ├── build.rs │ ├── check.rs │ ├── format.rs │ ├── install.rs │ ├── jobs.rs │ ├── jobs │ ├── debug_shell.rs │ └── logs.rs │ ├── live_update.rs │ ├── lsp.rs │ ├── main.rs │ ├── publish.rs │ ├── run.rs │ ├── run_sandbox.rs │ └── self_update.rs ├── project.bri └── rust-toolchain.toml /.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | rustflags = ["--cfg", "tokio_unstable"] 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .env 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/README.md -------------------------------------------------------------------------------- /brioche.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/brioche.lock -------------------------------------------------------------------------------- /crates/brioche-core/.sqlx/query-093ab60c69f2fc825e796b2de9957035a5e716cba9c24a8449e5b9419b460d12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/.sqlx/query-093ab60c69f2fc825e796b2de9957035a5e716cba9c24a8449e5b9419b460d12.json -------------------------------------------------------------------------------- /crates/brioche-core/.sqlx/query-63badf53bce7944557144c50345f0c5c8b68089524048fe50ebe405bbef231d5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/.sqlx/query-63badf53bce7944557144c50345f0c5c8b68089524048fe50ebe405bbef231d5.json -------------------------------------------------------------------------------- /crates/brioche-core/.sqlx/query-862f68a7574af5aa4cc97103251e1e776199eee359282b45e420e4e40edbc622.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/.sqlx/query-862f68a7574af5aa4cc97103251e1e776199eee359282b45e420e4e40edbc622.json -------------------------------------------------------------------------------- /crates/brioche-core/.sqlx/query-8a2dea840694ec14ff55a08a9111d0a3e850c9f5e8ae294459ff2666565f7eb6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/.sqlx/query-8a2dea840694ec14ff55a08a9111d0a3e850c9f5e8ae294459ff2666565f7eb6.json -------------------------------------------------------------------------------- /crates/brioche-core/.sqlx/query-8d403db542ca6af7ddf06fa925216da825b07c499476c924de610068e5a53153.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/.sqlx/query-8d403db542ca6af7ddf06fa925216da825b07c499476c924de610068e5a53153.json -------------------------------------------------------------------------------- /crates/brioche-core/.sqlx/query-d40f88621ae7af22b3ff5ff5e1571a7da9d88ce95bead36538ac677ca7275a77.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/.sqlx/query-d40f88621ae7af22b3ff5ff5e1571a7da9d88ce95bead36538ac677ca7275a77.json -------------------------------------------------------------------------------- /crates/brioche-core/.sqlx/query-d7e32665a8d362b19f6cc17061de9a25b69332ec65c9e02ab42f9a9cd7cf433a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/.sqlx/query-d7e32665a8d362b19f6cc17061de9a25b69332ec65c9e02ab42f9a9cd7cf433a.json -------------------------------------------------------------------------------- /crates/brioche-core/.sqlx/query-e25e7f41e88210d4fe76160788081be6823ebac2b66c34f278d58b3085c4a853.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/.sqlx/query-e25e7f41e88210d4fe76160788081be6823ebac2b66c34f278d58b3085c4a853.json -------------------------------------------------------------------------------- /crates/brioche-core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/Cargo.toml -------------------------------------------------------------------------------- /crates/brioche-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/Makefile -------------------------------------------------------------------------------- /crates/brioche-core/benches/bake.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/benches/bake.rs -------------------------------------------------------------------------------- /crates/brioche-core/benches/blob.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/benches/blob.rs -------------------------------------------------------------------------------- /crates/brioche-core/benches/directory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/benches/directory.rs -------------------------------------------------------------------------------- /crates/brioche-core/benches/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/benches/input.rs -------------------------------------------------------------------------------- /crates/brioche-core/data/.gitignore: -------------------------------------------------------------------------------- 1 | /* 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /crates/brioche-core/migrations/20230812234936_initial_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/migrations/20230812234936_initial_schema.sql -------------------------------------------------------------------------------- /crates/brioche-core/migrations/20230903082607_rename_builds_to_resolves.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/migrations/20230903082607_rename_builds_to_resolves.sql -------------------------------------------------------------------------------- /crates/brioche-core/migrations/20230908034536_multiple_input_steps_per_resolve.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/migrations/20230908034536_multiple_input_steps_per_resolve.sql -------------------------------------------------------------------------------- /crates/brioche-core/migrations/20240412073418_add_project_resolves_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/migrations/20240412073418_add_project_resolves_table.sql -------------------------------------------------------------------------------- /crates/brioche-core/migrations/20240415051245_add_child_resolves_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/migrations/20240415051245_add_child_resolves_table.sql -------------------------------------------------------------------------------- /crates/brioche-core/migrations/20240415052028_simplify_resolves_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/migrations/20240415052028_simplify_resolves_table.sql -------------------------------------------------------------------------------- /crates/brioche-core/migrations/20240421035442_rename_blob_id_to_blob_hash.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/migrations/20240421035442_rename_blob_id_to_blob_hash.sql -------------------------------------------------------------------------------- /crates/brioche-core/migrations/20240422001037_separate_artifacts_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/migrations/20240422001037_separate_artifacts_table.sql -------------------------------------------------------------------------------- /crates/brioche-core/migrations/20240428205455_rename_artifacts_to_recipes_and_resolves_to_bakes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/migrations/20240428205455_rename_artifacts_to_recipes_and_resolves_to_bakes.sql -------------------------------------------------------------------------------- /crates/brioche-core/runtime/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /crates/brioche-core/runtime/.nvmrc: -------------------------------------------------------------------------------- 1 | v21.5.0 2 | -------------------------------------------------------------------------------- /crates/brioche-core/runtime/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/build.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/dist/index.js -------------------------------------------------------------------------------- /crates/brioche-core/runtime/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/package-lock.json -------------------------------------------------------------------------------- /crates/brioche-core/runtime/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/package.json -------------------------------------------------------------------------------- /crates/brioche-core/runtime/src/check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/src/check.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/src/compat/console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/src/compat/console.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/src/compat/node/assert.cjs: -------------------------------------------------------------------------------- 1 | module.exports = () => {}; 2 | -------------------------------------------------------------------------------- /crates/brioche-core/runtime/src/compat/node/buffer.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require("buffer/"); 2 | -------------------------------------------------------------------------------- /crates/brioche-core/runtime/src/compat/node/crypto.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require("crypto-browserify"); 2 | -------------------------------------------------------------------------------- /crates/brioche-core/runtime/src/compat/node/events.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require("events/"); 2 | -------------------------------------------------------------------------------- /crates/brioche-core/runtime/src/compat/node/fs.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/src/compat/node/fs.cjs -------------------------------------------------------------------------------- /crates/brioche-core/runtime/src/compat/node/module.cjs: -------------------------------------------------------------------------------- 1 | module.exports.createRequire = () => {}; 2 | -------------------------------------------------------------------------------- /crates/brioche-core/runtime/src/compat/node/os.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/src/compat/node/os.cjs -------------------------------------------------------------------------------- /crates/brioche-core/runtime/src/compat/node/path.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/src/compat/node/path.cjs -------------------------------------------------------------------------------- /crates/brioche-core/runtime/src/compat/node/stream.cjs: -------------------------------------------------------------------------------- 1 | module.exports = require("stream-browserify"); 2 | -------------------------------------------------------------------------------- /crates/brioche-core/runtime/src/compat/node/url.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/src/compat/node/url.cjs -------------------------------------------------------------------------------- /crates/brioche-core/runtime/src/compat/node/util.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/src/compat/node/util.cjs -------------------------------------------------------------------------------- /crates/brioche-core/runtime/src/compat/setup.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/src/compat/setup.cjs -------------------------------------------------------------------------------- /crates/brioche-core/runtime/src/compat/text-encoding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/src/compat/text-encoding.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/src/eslint-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/src/eslint-common.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/src/index.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/src/lsp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/src/lsp.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/src/ts-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/src/ts-common.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tsconfig.json -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.decorators.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.decorators.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.decorators.legacy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.decorators.legacy.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.dom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.dom.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.dom.iterable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.dom.iterable.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2015.collection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2015.collection.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2015.core.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2015.core.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2015.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2015.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2015.generator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2015.generator.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2015.iterable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2015.iterable.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2015.promise.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2015.promise.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2015.proxy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2015.proxy.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2015.reflect.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2015.reflect.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2015.symbol.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2015.symbol.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2015.symbol.wellknown.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2015.symbol.wellknown.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2016.array.include.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2016.array.include.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2016.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2016.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2016.full.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2016.full.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2017.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2017.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2017.full.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2017.full.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2017.intl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2017.intl.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2017.object.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2017.object.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2017.sharedmemory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2017.sharedmemory.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2017.string.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2017.string.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2017.typedarrays.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2017.typedarrays.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2018.asyncgenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2018.asyncgenerator.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2018.asynciterable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2018.asynciterable.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2018.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2018.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2018.full.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2018.full.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2018.intl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2018.intl.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2018.promise.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2018.promise.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2018.regexp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2018.regexp.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2019.array.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2019.array.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2019.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2019.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2019.full.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2019.full.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2019.intl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2019.intl.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2019.object.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2019.object.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2019.string.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2019.string.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2019.symbol.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2019.symbol.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2020.bigint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2020.bigint.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2020.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2020.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2020.date.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2020.date.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2020.full.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2020.full.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2020.intl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2020.intl.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2020.number.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2020.number.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2020.promise.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2020.promise.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2020.sharedmemory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2020.sharedmemory.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2020.string.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2020.string.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2020.symbol.wellknown.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2020.symbol.wellknown.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2021.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2021.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2021.full.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2021.full.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2021.intl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2021.intl.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2021.promise.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2021.promise.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2021.string.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2021.string.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2021.weakref.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2021.weakref.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2022.array.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2022.array.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2022.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2022.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2022.error.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2022.error.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2022.full.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2022.full.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2022.intl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2022.intl.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2022.object.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2022.object.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2022.regexp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2022.regexp.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2022.sharedmemory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2022.sharedmemory.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2022.string.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2022.string.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2023.array.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2023.array.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2023.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2023.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es2023.full.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es2023.full.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es5.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es5.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.es6.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.es6.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.esnext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.esnext.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.esnext.full.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.esnext.full.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.esnext.intl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.esnext.intl.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.scripthost.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.scripthost.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.webworker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.webworker.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.webworker.importscripts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.webworker.importscripts.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/runtime/tslib/lib.webworker.iterable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/runtime/tslib/lib.webworker.iterable.d.ts -------------------------------------------------------------------------------- /crates/brioche-core/src/bake.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/bake.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/bake/attach_resources.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/bake/attach_resources.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/bake/collect_references.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/bake/collect_references.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/bake/download.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/bake/download.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/bake/process.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/bake/process.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/bake/unarchive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/bake/unarchive.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/blob.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/blob.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/cache.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/cache/archive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/cache/archive.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/config.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/download.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/download.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/encoding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/encoding.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/fs_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/fs_utils.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/input.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/lazy_bake.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/lazy_bake.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/lib.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/object_store_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/object_store_utils.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/output.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/platform.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/platform.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/process_events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/process_events.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/process_events/display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/process_events/display.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/process_events/reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/process_events/reader.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/process_events/writer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/process_events/writer.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/project.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/project.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/project/analyze.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/project/analyze.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/project/artifact.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/project/artifact.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/project/edit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/project/edit.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/project/load.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/project/load.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/publish.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/publish.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/recipe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/recipe.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/references.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/references.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/registry.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/reporter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/reporter.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/reporter/console.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/reporter/console.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/reporter/job.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/reporter/job.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/reporter/otel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/reporter/otel.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/sandbox.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/sandbox.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/sandbox/linux_namespace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/sandbox/linux_namespace.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/sandbox/unsandboxed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/sandbox/unsandboxed.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/script.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/script.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/script/bridge.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/script/bridge.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/script/check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/script/check.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/script/compiler_host.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/script/compiler_host.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/script/evaluate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/script/evaluate.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/script/format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/script/format.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/script/js.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/script/js.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/script/lsp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/script/lsp.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/script/specifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/script/specifier.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/sync.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/utils.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/utils/io.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/utils/io.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/utils/output_buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/utils/output_buffer.rs -------------------------------------------------------------------------------- /crates/brioche-core/src/vfs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/src/vfs.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/bake_attach_resources.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/bake_attach_resources.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/bake_basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/bake_basic.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/bake_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/bake_cache.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/bake_collect_references.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/bake_collect_references.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/bake_download.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/bake_download.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/bake_glob.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/bake_glob.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/bake_parallel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/bake_parallel.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/bake_process.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/bake_process.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/bake_proxy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/bake_proxy.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/cache_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/cache_client.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/directory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/directory.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/input.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/lazy_bake.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/lazy_bake.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/lsp_basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/lsp_basic.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/lsp_completions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/lsp_completions.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/lsp_on_save.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/lsp_on_save.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/object_store_utils_s3.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/object_store_utils_s3.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/output.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/process_events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/process_events.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/project_edit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/project_edit.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/project_hash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/project_hash.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/project_load.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/project_load.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/project_load_cyclic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/project_load_cyclic.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/recipe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/recipe.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/recipe_hash_stable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/recipe_hash_stable.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/script_check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/script_check.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/script_eval.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/script_eval.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/script_ops.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/script_ops.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/script_project_analyze.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/script_project_analyze.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/script_specifiers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/script_specifiers.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/sync_from_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/sync_from_cache.rs -------------------------------------------------------------------------------- /crates/brioche-core/tests/sync_to_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-core/tests/sync_to_cache.rs -------------------------------------------------------------------------------- /crates/brioche-pack/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-pack/Cargo.toml -------------------------------------------------------------------------------- /crates/brioche-pack/src/encoding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-pack/src/encoding.rs -------------------------------------------------------------------------------- /crates/brioche-pack/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-pack/src/lib.rs -------------------------------------------------------------------------------- /crates/brioche-test-support/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-test-support/Cargo.toml -------------------------------------------------------------------------------- /crates/brioche-test-support/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche-test-support/src/lib.rs -------------------------------------------------------------------------------- /crates/brioche/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche/Cargo.toml -------------------------------------------------------------------------------- /crates/brioche/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche/Makefile -------------------------------------------------------------------------------- /crates/brioche/src/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche/src/build.rs -------------------------------------------------------------------------------- /crates/brioche/src/check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche/src/check.rs -------------------------------------------------------------------------------- /crates/brioche/src/format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche/src/format.rs -------------------------------------------------------------------------------- /crates/brioche/src/install.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche/src/install.rs -------------------------------------------------------------------------------- /crates/brioche/src/jobs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche/src/jobs.rs -------------------------------------------------------------------------------- /crates/brioche/src/jobs/debug_shell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche/src/jobs/debug_shell.rs -------------------------------------------------------------------------------- /crates/brioche/src/jobs/logs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche/src/jobs/logs.rs -------------------------------------------------------------------------------- /crates/brioche/src/live_update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche/src/live_update.rs -------------------------------------------------------------------------------- /crates/brioche/src/lsp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche/src/lsp.rs -------------------------------------------------------------------------------- /crates/brioche/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche/src/main.rs -------------------------------------------------------------------------------- /crates/brioche/src/publish.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche/src/publish.rs -------------------------------------------------------------------------------- /crates/brioche/src/run.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche/src/run.rs -------------------------------------------------------------------------------- /crates/brioche/src/run_sandbox.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche/src/run_sandbox.rs -------------------------------------------------------------------------------- /crates/brioche/src/self_update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/crates/brioche/src/self_update.rs -------------------------------------------------------------------------------- /project.bri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/project.bri -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brioche-dev/brioche/HEAD/rust-toolchain.toml --------------------------------------------------------------------------------