├── .devcontainer ├── Containerfile └── devcontainer.json ├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ ├── devcontainer.yml │ ├── publish-website.yml │ ├── release-downstream.yml │ ├── release-feature.yml │ ├── release.yml │ ├── test-node.yml │ ├── test-python.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── Justfile ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── benches ├── parse_file.rs └── util │ └── mod.rs ├── devcontainer-features ├── src │ └── dotslash │ │ ├── README.md │ │ ├── devcontainer-feature.json │ │ └── install.sh └── test │ └── dotslash │ ├── install_buck.sh │ ├── scenarios.json │ ├── test.sh │ └── versioned.sh ├── node ├── .prettierrc ├── README.md ├── bin │ └── dotslash ├── index.d.ts ├── index.js ├── index.js.flow ├── package-lock.json ├── package.json ├── platforms.js └── scripts │ ├── build-package.js │ └── clean-package.js ├── python ├── README.md ├── hatch_build.py ├── pyproject.toml ├── requirements-fmt.txt ├── src │ └── dotslash │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _locate.py │ │ └── py.typed └── tests │ ├── __init__.py │ ├── test_api.py │ └── test_cli.py ├── src ├── artifact_location.rs ├── artifact_path.rs ├── config.rs ├── curl.rs ├── default_provider_factory.rs ├── digest.rs ├── dotslash_cache.rs ├── download.rs ├── execution.rs ├── fetch_method.rs ├── github_release_provider.rs ├── http_provider.rs ├── locate.rs ├── main.rs ├── platform.rs ├── print_entry_for_url.rs ├── provider.rs ├── s3_provider.rs ├── subcommand.rs ├── util.rs └── util │ ├── chmodx.rs │ ├── display.rs │ ├── execv.rs │ ├── file_lock.rs │ ├── fs_ctx.rs │ ├── http_status.rs │ ├── is_not_found_error.rs │ ├── is_path_safe_to_own.rs │ ├── mv_no_clobber.rs │ ├── progress.rs │ ├── tree_perms.rs │ ├── unarchive.rs │ └── update_mtime.rs ├── tests ├── common │ ├── ci.rs │ └── mod.rs ├── dotslash_tests.rs ├── fixtures │ ├── http__dummy_values.in │ ├── http__gz__print_argv │ ├── http__nonexistent_url │ ├── http__plain__print_argv │ ├── http__tar__print_argv │ ├── http__tar_gz__print_argv │ ├── http__tar_xz__print_argv │ ├── http__tar_zst__print_argv │ ├── http__xz__print_argv │ ├── http__zip__print_argv │ └── http__zst__print_argv ├── generate_fixtures.py └── snapshots │ └── http__dummy_values.out ├── website ├── .gitignore ├── .npmrc ├── README.md ├── assets │ └── Final │ │ ├── AI │ │ └── DotSlash_Final.ai │ │ ├── PNG │ │ ├── DotSlash_Final_brandmark_color-and-white-on-black.png │ │ ├── DotSlash_Final_brandmark_full-color.png │ │ ├── DotSlash_Final_brandmark_grayscale.png │ │ ├── DotSlash_Final_brankmark_white.png │ │ ├── DotSlash_Final_symbol_full-color-on-black.png │ │ ├── DotSlash_Final_symbol_full-color.png │ │ ├── DotSlash_Final_symbol_rayscale.png │ │ └── DotSlash_Final_symbol_white.png │ │ └── SVG │ │ ├── DotSlash_Final_brandmark_color-and-white-on-black.svg │ │ ├── DotSlash_Final_brandmark_full-color.svg │ │ ├── DotSlash_Final_brandmark_grayscale.svg │ │ ├── DotSlash_Final_brankmark_white.svg │ │ ├── DotSlash_Final_symbol_full-color-on-black.svg │ │ ├── DotSlash_Final_symbol_full-color.svg │ │ ├── DotSlash_Final_symbol_rayscale.svg │ │ └── DotSlash_Final_symbol_white.svg ├── babel.config.js ├── docs │ ├── dotslash-file.md │ ├── execution.md │ ├── flags.md │ ├── github.md │ ├── index.md │ ├── installation.md │ ├── limitations.md │ ├── motivation.md │ └── windows.md ├── docusaurus.config.js ├── package.json ├── sidebars.js ├── src │ ├── components │ │ ├── HomepageFeatures.js │ │ └── HomepageFeatures.module.css │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.js │ │ ├── index.module.css │ │ └── markdown-page.md ├── static │ ├── .nojekyll │ ├── CNAME │ └── img │ │ ├── DotSlash_Final_brandmark_color-and-white-on-black.svg │ │ ├── favicon-on-black.svg │ │ └── favicon.svg └── yarn.lock └── windows_shim ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── dotslash_windows_shim-aarch64.exe ├── dotslash_windows_shim-x86_64.exe ├── dotslash_windows_shim.rs ├── release.py ├── run_test.py ├── rust-toolchain.toml └── tests └── test.py /.devcontainer/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/.devcontainer/Containerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/devcontainer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/.github/workflows/devcontainer.yml -------------------------------------------------------------------------------- /.github/workflows/publish-website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/.github/workflows/publish-website.yml -------------------------------------------------------------------------------- /.github/workflows/release-downstream.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/.github/workflows/release-downstream.yml -------------------------------------------------------------------------------- /.github/workflows/release-feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/.github/workflows/release-feature.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test-node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/.github/workflows/test-node.yml -------------------------------------------------------------------------------- /.github/workflows/test-python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/.github/workflows/test-python.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/Justfile -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/README.md -------------------------------------------------------------------------------- /benches/parse_file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/benches/parse_file.rs -------------------------------------------------------------------------------- /benches/util/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/benches/util/mod.rs -------------------------------------------------------------------------------- /devcontainer-features/src/dotslash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/devcontainer-features/src/dotslash/README.md -------------------------------------------------------------------------------- /devcontainer-features/src/dotslash/devcontainer-feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/devcontainer-features/src/dotslash/devcontainer-feature.json -------------------------------------------------------------------------------- /devcontainer-features/src/dotslash/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/devcontainer-features/src/dotslash/install.sh -------------------------------------------------------------------------------- /devcontainer-features/test/dotslash/install_buck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/devcontainer-features/test/dotslash/install_buck.sh -------------------------------------------------------------------------------- /devcontainer-features/test/dotslash/scenarios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/devcontainer-features/test/dotslash/scenarios.json -------------------------------------------------------------------------------- /devcontainer-features/test/dotslash/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/devcontainer-features/test/dotslash/test.sh -------------------------------------------------------------------------------- /devcontainer-features/test/dotslash/versioned.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/devcontainer-features/test/dotslash/versioned.sh -------------------------------------------------------------------------------- /node/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/node/.prettierrc -------------------------------------------------------------------------------- /node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/node/README.md -------------------------------------------------------------------------------- /node/bin/dotslash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/node/bin/dotslash -------------------------------------------------------------------------------- /node/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/node/index.d.ts -------------------------------------------------------------------------------- /node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/node/index.js -------------------------------------------------------------------------------- /node/index.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/node/index.js.flow -------------------------------------------------------------------------------- /node/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/node/package-lock.json -------------------------------------------------------------------------------- /node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/node/package.json -------------------------------------------------------------------------------- /node/platforms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/node/platforms.js -------------------------------------------------------------------------------- /node/scripts/build-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/node/scripts/build-package.js -------------------------------------------------------------------------------- /node/scripts/clean-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/node/scripts/clean-package.js -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/python/README.md -------------------------------------------------------------------------------- /python/hatch_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/python/hatch_build.py -------------------------------------------------------------------------------- /python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/python/pyproject.toml -------------------------------------------------------------------------------- /python/requirements-fmt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/python/requirements-fmt.txt -------------------------------------------------------------------------------- /python/src/dotslash/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/python/src/dotslash/__init__.py -------------------------------------------------------------------------------- /python/src/dotslash/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/python/src/dotslash/__main__.py -------------------------------------------------------------------------------- /python/src/dotslash/_locate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/python/src/dotslash/_locate.py -------------------------------------------------------------------------------- /python/src/dotslash/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/python/tests/__init__.py -------------------------------------------------------------------------------- /python/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/python/tests/test_api.py -------------------------------------------------------------------------------- /python/tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/python/tests/test_cli.py -------------------------------------------------------------------------------- /src/artifact_location.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/artifact_location.rs -------------------------------------------------------------------------------- /src/artifact_path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/artifact_path.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/curl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/curl.rs -------------------------------------------------------------------------------- /src/default_provider_factory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/default_provider_factory.rs -------------------------------------------------------------------------------- /src/digest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/digest.rs -------------------------------------------------------------------------------- /src/dotslash_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/dotslash_cache.rs -------------------------------------------------------------------------------- /src/download.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/download.rs -------------------------------------------------------------------------------- /src/execution.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/execution.rs -------------------------------------------------------------------------------- /src/fetch_method.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/fetch_method.rs -------------------------------------------------------------------------------- /src/github_release_provider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/github_release_provider.rs -------------------------------------------------------------------------------- /src/http_provider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/http_provider.rs -------------------------------------------------------------------------------- /src/locate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/locate.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/platform.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/platform.rs -------------------------------------------------------------------------------- /src/print_entry_for_url.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/print_entry_for_url.rs -------------------------------------------------------------------------------- /src/provider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/provider.rs -------------------------------------------------------------------------------- /src/s3_provider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/s3_provider.rs -------------------------------------------------------------------------------- /src/subcommand.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/subcommand.rs -------------------------------------------------------------------------------- /src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/util.rs -------------------------------------------------------------------------------- /src/util/chmodx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/util/chmodx.rs -------------------------------------------------------------------------------- /src/util/display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/util/display.rs -------------------------------------------------------------------------------- /src/util/execv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/util/execv.rs -------------------------------------------------------------------------------- /src/util/file_lock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/util/file_lock.rs -------------------------------------------------------------------------------- /src/util/fs_ctx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/util/fs_ctx.rs -------------------------------------------------------------------------------- /src/util/http_status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/util/http_status.rs -------------------------------------------------------------------------------- /src/util/is_not_found_error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/util/is_not_found_error.rs -------------------------------------------------------------------------------- /src/util/is_path_safe_to_own.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/util/is_path_safe_to_own.rs -------------------------------------------------------------------------------- /src/util/mv_no_clobber.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/util/mv_no_clobber.rs -------------------------------------------------------------------------------- /src/util/progress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/util/progress.rs -------------------------------------------------------------------------------- /src/util/tree_perms.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/util/tree_perms.rs -------------------------------------------------------------------------------- /src/util/unarchive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/util/unarchive.rs -------------------------------------------------------------------------------- /src/util/update_mtime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/src/util/update_mtime.rs -------------------------------------------------------------------------------- /tests/common/ci.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/tests/common/ci.rs -------------------------------------------------------------------------------- /tests/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/tests/common/mod.rs -------------------------------------------------------------------------------- /tests/dotslash_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/tests/dotslash_tests.rs -------------------------------------------------------------------------------- /tests/fixtures/http__dummy_values.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/tests/fixtures/http__dummy_values.in -------------------------------------------------------------------------------- /tests/fixtures/http__gz__print_argv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/tests/fixtures/http__gz__print_argv -------------------------------------------------------------------------------- /tests/fixtures/http__nonexistent_url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/tests/fixtures/http__nonexistent_url -------------------------------------------------------------------------------- /tests/fixtures/http__plain__print_argv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/tests/fixtures/http__plain__print_argv -------------------------------------------------------------------------------- /tests/fixtures/http__tar__print_argv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/tests/fixtures/http__tar__print_argv -------------------------------------------------------------------------------- /tests/fixtures/http__tar_gz__print_argv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/tests/fixtures/http__tar_gz__print_argv -------------------------------------------------------------------------------- /tests/fixtures/http__tar_xz__print_argv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/tests/fixtures/http__tar_xz__print_argv -------------------------------------------------------------------------------- /tests/fixtures/http__tar_zst__print_argv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/tests/fixtures/http__tar_zst__print_argv -------------------------------------------------------------------------------- /tests/fixtures/http__xz__print_argv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/tests/fixtures/http__xz__print_argv -------------------------------------------------------------------------------- /tests/fixtures/http__zip__print_argv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/tests/fixtures/http__zip__print_argv -------------------------------------------------------------------------------- /tests/fixtures/http__zst__print_argv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/tests/fixtures/http__zst__print_argv -------------------------------------------------------------------------------- /tests/generate_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/tests/generate_fixtures.py -------------------------------------------------------------------------------- /tests/snapshots/http__dummy_values.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/tests/snapshots/http__dummy_values.out -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/.npmrc -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/README.md -------------------------------------------------------------------------------- /website/assets/Final/AI/DotSlash_Final.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/assets/Final/AI/DotSlash_Final.ai -------------------------------------------------------------------------------- /website/assets/Final/PNG/DotSlash_Final_brandmark_color-and-white-on-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/assets/Final/PNG/DotSlash_Final_brandmark_color-and-white-on-black.png -------------------------------------------------------------------------------- /website/assets/Final/PNG/DotSlash_Final_brandmark_full-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/assets/Final/PNG/DotSlash_Final_brandmark_full-color.png -------------------------------------------------------------------------------- /website/assets/Final/PNG/DotSlash_Final_brandmark_grayscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/assets/Final/PNG/DotSlash_Final_brandmark_grayscale.png -------------------------------------------------------------------------------- /website/assets/Final/PNG/DotSlash_Final_brankmark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/assets/Final/PNG/DotSlash_Final_brankmark_white.png -------------------------------------------------------------------------------- /website/assets/Final/PNG/DotSlash_Final_symbol_full-color-on-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/assets/Final/PNG/DotSlash_Final_symbol_full-color-on-black.png -------------------------------------------------------------------------------- /website/assets/Final/PNG/DotSlash_Final_symbol_full-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/assets/Final/PNG/DotSlash_Final_symbol_full-color.png -------------------------------------------------------------------------------- /website/assets/Final/PNG/DotSlash_Final_symbol_rayscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/assets/Final/PNG/DotSlash_Final_symbol_rayscale.png -------------------------------------------------------------------------------- /website/assets/Final/PNG/DotSlash_Final_symbol_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/assets/Final/PNG/DotSlash_Final_symbol_white.png -------------------------------------------------------------------------------- /website/assets/Final/SVG/DotSlash_Final_brandmark_color-and-white-on-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/assets/Final/SVG/DotSlash_Final_brandmark_color-and-white-on-black.svg -------------------------------------------------------------------------------- /website/assets/Final/SVG/DotSlash_Final_brandmark_full-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/assets/Final/SVG/DotSlash_Final_brandmark_full-color.svg -------------------------------------------------------------------------------- /website/assets/Final/SVG/DotSlash_Final_brandmark_grayscale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/assets/Final/SVG/DotSlash_Final_brandmark_grayscale.svg -------------------------------------------------------------------------------- /website/assets/Final/SVG/DotSlash_Final_brankmark_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/assets/Final/SVG/DotSlash_Final_brankmark_white.svg -------------------------------------------------------------------------------- /website/assets/Final/SVG/DotSlash_Final_symbol_full-color-on-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/assets/Final/SVG/DotSlash_Final_symbol_full-color-on-black.svg -------------------------------------------------------------------------------- /website/assets/Final/SVG/DotSlash_Final_symbol_full-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/assets/Final/SVG/DotSlash_Final_symbol_full-color.svg -------------------------------------------------------------------------------- /website/assets/Final/SVG/DotSlash_Final_symbol_rayscale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/assets/Final/SVG/DotSlash_Final_symbol_rayscale.svg -------------------------------------------------------------------------------- /website/assets/Final/SVG/DotSlash_Final_symbol_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/assets/Final/SVG/DotSlash_Final_symbol_white.svg -------------------------------------------------------------------------------- /website/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/babel.config.js -------------------------------------------------------------------------------- /website/docs/dotslash-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/docs/dotslash-file.md -------------------------------------------------------------------------------- /website/docs/execution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/docs/execution.md -------------------------------------------------------------------------------- /website/docs/flags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/docs/flags.md -------------------------------------------------------------------------------- /website/docs/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/docs/github.md -------------------------------------------------------------------------------- /website/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/docs/index.md -------------------------------------------------------------------------------- /website/docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/docs/installation.md -------------------------------------------------------------------------------- /website/docs/limitations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/docs/limitations.md -------------------------------------------------------------------------------- /website/docs/motivation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/docs/motivation.md -------------------------------------------------------------------------------- /website/docs/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/docs/windows.md -------------------------------------------------------------------------------- /website/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/docusaurus.config.js -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/package.json -------------------------------------------------------------------------------- /website/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/sidebars.js -------------------------------------------------------------------------------- /website/src/components/HomepageFeatures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/src/components/HomepageFeatures.js -------------------------------------------------------------------------------- /website/src/components/HomepageFeatures.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/src/components/HomepageFeatures.module.css -------------------------------------------------------------------------------- /website/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/src/css/custom.css -------------------------------------------------------------------------------- /website/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/src/pages/index.js -------------------------------------------------------------------------------- /website/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/src/pages/index.module.css -------------------------------------------------------------------------------- /website/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/src/pages/markdown-page.md -------------------------------------------------------------------------------- /website/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/CNAME: -------------------------------------------------------------------------------- 1 | dotslash-cli.com 2 | -------------------------------------------------------------------------------- /website/static/img/DotSlash_Final_brandmark_color-and-white-on-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/static/img/DotSlash_Final_brandmark_color-and-white-on-black.svg -------------------------------------------------------------------------------- /website/static/img/favicon-on-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/static/img/favicon-on-black.svg -------------------------------------------------------------------------------- /website/static/img/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/static/img/favicon.svg -------------------------------------------------------------------------------- /website/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/website/yarn.lock -------------------------------------------------------------------------------- /windows_shim/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /target 3 | -------------------------------------------------------------------------------- /windows_shim/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/windows_shim/Cargo.lock -------------------------------------------------------------------------------- /windows_shim/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/windows_shim/Cargo.toml -------------------------------------------------------------------------------- /windows_shim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/windows_shim/README.md -------------------------------------------------------------------------------- /windows_shim/dotslash_windows_shim-aarch64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/windows_shim/dotslash_windows_shim-aarch64.exe -------------------------------------------------------------------------------- /windows_shim/dotslash_windows_shim-x86_64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/windows_shim/dotslash_windows_shim-x86_64.exe -------------------------------------------------------------------------------- /windows_shim/dotslash_windows_shim.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/windows_shim/dotslash_windows_shim.rs -------------------------------------------------------------------------------- /windows_shim/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/windows_shim/release.py -------------------------------------------------------------------------------- /windows_shim/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/windows_shim/run_test.py -------------------------------------------------------------------------------- /windows_shim/rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "nightly" 3 | -------------------------------------------------------------------------------- /windows_shim/tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebook/dotslash/HEAD/windows_shim/tests/test.py --------------------------------------------------------------------------------