├── .github └── workflows │ ├── ci.yml │ └── test_pr.yml ├── .gitignore ├── LICENSE ├── META.md ├── README.md ├── adv_diff ├── .gitignore ├── dub.json └── source │ └── redub │ └── libs │ └── adv_diff │ ├── files.d │ └── helpers │ └── index_of.d ├── colorize ├── .gitignore ├── dub.json └── source │ └── redub │ └── libs │ └── colorize │ ├── colors.d │ ├── cwrite.d │ ├── package.d │ └── winterm.d ├── d_dependencies ├── .gitignore ├── dub.json ├── simports │ ├── dub.deps │ └── hip_deps └── source │ └── d_depedencies.d ├── d_downloader ├── .gitignore ├── dub.json └── source │ └── d_downloader │ ├── curl.d │ ├── package.d │ └── windows.d ├── dub.json ├── dub.selections.json ├── dub_sdl_to_json ├── .gitignore ├── dub.json ├── dub.selections.json └── source │ └── dub_sdl_to_json.d ├── package_suppliers ├── .gitignore ├── dub.json └── source │ └── redub │ └── libs │ └── package_suppliers │ ├── dub_registry.d │ └── utils.d ├── packaging ├── README.md ├── clang_version ├── dmd_version └── ldc2_version ├── plugins └── getmodules │ ├── .gitignore │ ├── dub.json │ └── source │ └── getmodules.d ├── redub.code-workspace ├── replace_redub.bat ├── replace_redub.sh ├── semver ├── .gitignore ├── dub.json └── source │ └── redub │ └── libs │ ├── semver.d │ └── version_parser.d ├── source ├── app.d └── redub │ ├── api.d │ ├── buildapi.d │ ├── building │ ├── cache.d │ ├── compile.d │ └── utils.d │ ├── cli │ └── dub.d │ ├── command_generators │ ├── automatic.d │ ├── cl.d │ ├── clang.d │ ├── commons.d │ ├── d_compilers.d │ ├── dmd.d │ ├── gnu_based.d │ ├── ldc.d │ └── linkers.d │ ├── extensions │ ├── cli.d │ ├── helper │ │ └── terminal.d │ ├── universal.d │ ├── update.d │ └── watcher.d │ ├── logging.d │ ├── meta.d │ ├── misc │ ├── _7zip.d │ ├── console_control_handler.d │ ├── dmd_install.d │ ├── file_size_format.d │ ├── find_executable.d │ ├── github_tag_check.d │ ├── glob_entries.d │ ├── hard_link.d │ ├── ldc_conf_parser.d │ ├── ldc_install.d │ ├── make_file_executable.d │ ├── mini_regex.d │ ├── opend_install.d │ ├── path.d │ ├── semver_in_folder.d │ ├── shell.d │ ├── unzip.d │ ├── username.d │ └── windows_registry.d │ ├── package_searching │ ├── api.d │ ├── cache.d │ ├── downloader.d │ ├── dub.d │ └── entry.d │ ├── parsers │ ├── automatic.d │ ├── base.d │ ├── build_type.d │ ├── environment.d │ ├── json.d │ ├── sdl.d │ └── single.d │ ├── plugin │ ├── api.d │ ├── build.d │ └── load.d │ ├── tooling │ ├── archiver_identification.d │ ├── compiler_identification.d │ ├── compilers_inference.d │ ├── linker_identification.d │ └── msvc_getter.d │ └── tree_generators │ └── dub.d └── tests ├── deps ├── .gitignore ├── a │ ├── .gitignore │ ├── dub.json │ └── source │ │ └── a.d ├── b │ ├── .gitignore │ ├── dub.json │ └── source │ │ └── b.d ├── dub.json ├── src │ └── app.d └── x │ ├── .gitignore │ ├── dub.json │ └── source │ └── common.d ├── env ├── .gitignore ├── dub.json ├── repro.bat ├── simport │ └── main.inl └── source │ └── main.d ├── gcc ├── dub.json └── source │ └── gcc.c ├── gxx ├── dub.json └── source │ └── gcc.cc ├── multi_lang ├── .gitignore ├── c_dep │ ├── dub.json │ └── source │ │ ├── another_dep.c │ │ └── some_dep.c ├── dub.json ├── dub.selections.json └── source │ └── app.d ├── platforms ├── .gitignore ├── dub.json ├── extra │ ├── linux │ │ └── platform.d │ └── osx │ │ └── platform.d └── source │ └── app.d ├── plugin_test ├── .gitignore ├── dub.json └── source │ ├── app.d │ └── imports.txt ├── preb ├── .gitignore ├── dub.json ├── other │ └── test.d └── source │ └── app.d ├── redub_lib ├── .gitignore ├── dub.json ├── dub.selections.json └── source │ └── app.d ├── sLib ├── .gitignore ├── dub.json ├── source │ └── app.d └── special │ ├── dub.json │ └── source │ └── application.d ├── subcfg ├── .gitignore ├── dub.json ├── source │ └── app.d └── test │ └── app2.d ├── tarsd ├── .gitignore ├── dub.json ├── dub.selections.json └── source │ └── app.d ├── vec-bench ├── .gitignore ├── dub.json ├── dub.selections.json └── source │ └── main.d └── vibehello ├── .gitignore ├── dub.json ├── dub.selections.json └── source └── app.d /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/test_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/.github/workflows/test_pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/LICENSE -------------------------------------------------------------------------------- /META.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/META.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/README.md -------------------------------------------------------------------------------- /adv_diff/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/adv_diff/.gitignore -------------------------------------------------------------------------------- /adv_diff/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/adv_diff/dub.json -------------------------------------------------------------------------------- /adv_diff/source/redub/libs/adv_diff/files.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/adv_diff/source/redub/libs/adv_diff/files.d -------------------------------------------------------------------------------- /adv_diff/source/redub/libs/adv_diff/helpers/index_of.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/adv_diff/source/redub/libs/adv_diff/helpers/index_of.d -------------------------------------------------------------------------------- /colorize/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/colorize/.gitignore -------------------------------------------------------------------------------- /colorize/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/colorize/dub.json -------------------------------------------------------------------------------- /colorize/source/redub/libs/colorize/colors.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/colorize/source/redub/libs/colorize/colors.d -------------------------------------------------------------------------------- /colorize/source/redub/libs/colorize/cwrite.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/colorize/source/redub/libs/colorize/cwrite.d -------------------------------------------------------------------------------- /colorize/source/redub/libs/colorize/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/colorize/source/redub/libs/colorize/package.d -------------------------------------------------------------------------------- /colorize/source/redub/libs/colorize/winterm.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/colorize/source/redub/libs/colorize/winterm.d -------------------------------------------------------------------------------- /d_dependencies/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/d_dependencies/.gitignore -------------------------------------------------------------------------------- /d_dependencies/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/d_dependencies/dub.json -------------------------------------------------------------------------------- /d_dependencies/simports/dub.deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/d_dependencies/simports/dub.deps -------------------------------------------------------------------------------- /d_dependencies/simports/hip_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/d_dependencies/simports/hip_deps -------------------------------------------------------------------------------- /d_dependencies/source/d_depedencies.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/d_dependencies/source/d_depedencies.d -------------------------------------------------------------------------------- /d_downloader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/d_downloader/.gitignore -------------------------------------------------------------------------------- /d_downloader/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/d_downloader/dub.json -------------------------------------------------------------------------------- /d_downloader/source/d_downloader/curl.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/d_downloader/source/d_downloader/curl.d -------------------------------------------------------------------------------- /d_downloader/source/d_downloader/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/d_downloader/source/d_downloader/package.d -------------------------------------------------------------------------------- /d_downloader/source/d_downloader/windows.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/d_downloader/source/d_downloader/windows.d -------------------------------------------------------------------------------- /dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/dub.json -------------------------------------------------------------------------------- /dub.selections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/dub.selections.json -------------------------------------------------------------------------------- /dub_sdl_to_json/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/dub_sdl_to_json/.gitignore -------------------------------------------------------------------------------- /dub_sdl_to_json/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/dub_sdl_to_json/dub.json -------------------------------------------------------------------------------- /dub_sdl_to_json/dub.selections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/dub_sdl_to_json/dub.selections.json -------------------------------------------------------------------------------- /dub_sdl_to_json/source/dub_sdl_to_json.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/dub_sdl_to_json/source/dub_sdl_to_json.d -------------------------------------------------------------------------------- /package_suppliers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/package_suppliers/.gitignore -------------------------------------------------------------------------------- /package_suppliers/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/package_suppliers/dub.json -------------------------------------------------------------------------------- /package_suppliers/source/redub/libs/package_suppliers/dub_registry.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/package_suppliers/source/redub/libs/package_suppliers/dub_registry.d -------------------------------------------------------------------------------- /package_suppliers/source/redub/libs/package_suppliers/utils.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/package_suppliers/source/redub/libs/package_suppliers/utils.d -------------------------------------------------------------------------------- /packaging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/packaging/README.md -------------------------------------------------------------------------------- /packaging/clang_version: -------------------------------------------------------------------------------- 1 | v20.1.0 -------------------------------------------------------------------------------- /packaging/dmd_version: -------------------------------------------------------------------------------- 1 | v2.111.0 -------------------------------------------------------------------------------- /packaging/ldc2_version: -------------------------------------------------------------------------------- 1 | v1.41.0 -------------------------------------------------------------------------------- /plugins/getmodules/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/plugins/getmodules/.gitignore -------------------------------------------------------------------------------- /plugins/getmodules/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/plugins/getmodules/dub.json -------------------------------------------------------------------------------- /plugins/getmodules/source/getmodules.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/plugins/getmodules/source/getmodules.d -------------------------------------------------------------------------------- /redub.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/redub.code-workspace -------------------------------------------------------------------------------- /replace_redub.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/replace_redub.bat -------------------------------------------------------------------------------- /replace_redub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/replace_redub.sh -------------------------------------------------------------------------------- /semver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/semver/.gitignore -------------------------------------------------------------------------------- /semver/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/semver/dub.json -------------------------------------------------------------------------------- /semver/source/redub/libs/semver.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/semver/source/redub/libs/semver.d -------------------------------------------------------------------------------- /semver/source/redub/libs/version_parser.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/semver/source/redub/libs/version_parser.d -------------------------------------------------------------------------------- /source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/app.d -------------------------------------------------------------------------------- /source/redub/api.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/api.d -------------------------------------------------------------------------------- /source/redub/buildapi.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/buildapi.d -------------------------------------------------------------------------------- /source/redub/building/cache.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/building/cache.d -------------------------------------------------------------------------------- /source/redub/building/compile.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/building/compile.d -------------------------------------------------------------------------------- /source/redub/building/utils.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/building/utils.d -------------------------------------------------------------------------------- /source/redub/cli/dub.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/cli/dub.d -------------------------------------------------------------------------------- /source/redub/command_generators/automatic.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/command_generators/automatic.d -------------------------------------------------------------------------------- /source/redub/command_generators/cl.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/command_generators/cl.d -------------------------------------------------------------------------------- /source/redub/command_generators/clang.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/command_generators/clang.d -------------------------------------------------------------------------------- /source/redub/command_generators/commons.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/command_generators/commons.d -------------------------------------------------------------------------------- /source/redub/command_generators/d_compilers.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/command_generators/d_compilers.d -------------------------------------------------------------------------------- /source/redub/command_generators/dmd.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/command_generators/dmd.d -------------------------------------------------------------------------------- /source/redub/command_generators/gnu_based.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/command_generators/gnu_based.d -------------------------------------------------------------------------------- /source/redub/command_generators/ldc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/command_generators/ldc.d -------------------------------------------------------------------------------- /source/redub/command_generators/linkers.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/command_generators/linkers.d -------------------------------------------------------------------------------- /source/redub/extensions/cli.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/extensions/cli.d -------------------------------------------------------------------------------- /source/redub/extensions/helper/terminal.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/extensions/helper/terminal.d -------------------------------------------------------------------------------- /source/redub/extensions/universal.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/extensions/universal.d -------------------------------------------------------------------------------- /source/redub/extensions/update.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/extensions/update.d -------------------------------------------------------------------------------- /source/redub/extensions/watcher.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/extensions/watcher.d -------------------------------------------------------------------------------- /source/redub/logging.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/logging.d -------------------------------------------------------------------------------- /source/redub/meta.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/meta.d -------------------------------------------------------------------------------- /source/redub/misc/_7zip.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/misc/_7zip.d -------------------------------------------------------------------------------- /source/redub/misc/console_control_handler.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/misc/console_control_handler.d -------------------------------------------------------------------------------- /source/redub/misc/dmd_install.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/misc/dmd_install.d -------------------------------------------------------------------------------- /source/redub/misc/file_size_format.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/misc/file_size_format.d -------------------------------------------------------------------------------- /source/redub/misc/find_executable.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/misc/find_executable.d -------------------------------------------------------------------------------- /source/redub/misc/github_tag_check.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/misc/github_tag_check.d -------------------------------------------------------------------------------- /source/redub/misc/glob_entries.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/misc/glob_entries.d -------------------------------------------------------------------------------- /source/redub/misc/hard_link.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/misc/hard_link.d -------------------------------------------------------------------------------- /source/redub/misc/ldc_conf_parser.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/misc/ldc_conf_parser.d -------------------------------------------------------------------------------- /source/redub/misc/ldc_install.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/misc/ldc_install.d -------------------------------------------------------------------------------- /source/redub/misc/make_file_executable.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/misc/make_file_executable.d -------------------------------------------------------------------------------- /source/redub/misc/mini_regex.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/misc/mini_regex.d -------------------------------------------------------------------------------- /source/redub/misc/opend_install.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/misc/opend_install.d -------------------------------------------------------------------------------- /source/redub/misc/path.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/misc/path.d -------------------------------------------------------------------------------- /source/redub/misc/semver_in_folder.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/misc/semver_in_folder.d -------------------------------------------------------------------------------- /source/redub/misc/shell.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/misc/shell.d -------------------------------------------------------------------------------- /source/redub/misc/unzip.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/misc/unzip.d -------------------------------------------------------------------------------- /source/redub/misc/username.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/misc/username.d -------------------------------------------------------------------------------- /source/redub/misc/windows_registry.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/misc/windows_registry.d -------------------------------------------------------------------------------- /source/redub/package_searching/api.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/package_searching/api.d -------------------------------------------------------------------------------- /source/redub/package_searching/cache.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/package_searching/cache.d -------------------------------------------------------------------------------- /source/redub/package_searching/downloader.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/package_searching/downloader.d -------------------------------------------------------------------------------- /source/redub/package_searching/dub.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/package_searching/dub.d -------------------------------------------------------------------------------- /source/redub/package_searching/entry.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/package_searching/entry.d -------------------------------------------------------------------------------- /source/redub/parsers/automatic.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/parsers/automatic.d -------------------------------------------------------------------------------- /source/redub/parsers/base.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/parsers/base.d -------------------------------------------------------------------------------- /source/redub/parsers/build_type.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/parsers/build_type.d -------------------------------------------------------------------------------- /source/redub/parsers/environment.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/parsers/environment.d -------------------------------------------------------------------------------- /source/redub/parsers/json.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/parsers/json.d -------------------------------------------------------------------------------- /source/redub/parsers/sdl.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/parsers/sdl.d -------------------------------------------------------------------------------- /source/redub/parsers/single.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/parsers/single.d -------------------------------------------------------------------------------- /source/redub/plugin/api.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/plugin/api.d -------------------------------------------------------------------------------- /source/redub/plugin/build.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/plugin/build.d -------------------------------------------------------------------------------- /source/redub/plugin/load.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/plugin/load.d -------------------------------------------------------------------------------- /source/redub/tooling/archiver_identification.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/tooling/archiver_identification.d -------------------------------------------------------------------------------- /source/redub/tooling/compiler_identification.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/tooling/compiler_identification.d -------------------------------------------------------------------------------- /source/redub/tooling/compilers_inference.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/tooling/compilers_inference.d -------------------------------------------------------------------------------- /source/redub/tooling/linker_identification.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/tooling/linker_identification.d -------------------------------------------------------------------------------- /source/redub/tooling/msvc_getter.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/tooling/msvc_getter.d -------------------------------------------------------------------------------- /source/redub/tree_generators/dub.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/source/redub/tree_generators/dub.d -------------------------------------------------------------------------------- /tests/deps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/deps/.gitignore -------------------------------------------------------------------------------- /tests/deps/a/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/deps/a/.gitignore -------------------------------------------------------------------------------- /tests/deps/a/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/deps/a/dub.json -------------------------------------------------------------------------------- /tests/deps/a/source/a.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/deps/a/source/a.d -------------------------------------------------------------------------------- /tests/deps/b/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/deps/b/.gitignore -------------------------------------------------------------------------------- /tests/deps/b/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/deps/b/dub.json -------------------------------------------------------------------------------- /tests/deps/b/source/b.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/deps/b/source/b.d -------------------------------------------------------------------------------- /tests/deps/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/deps/dub.json -------------------------------------------------------------------------------- /tests/deps/src/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/deps/src/app.d -------------------------------------------------------------------------------- /tests/deps/x/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/deps/x/.gitignore -------------------------------------------------------------------------------- /tests/deps/x/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/deps/x/dub.json -------------------------------------------------------------------------------- /tests/deps/x/source/common.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/deps/x/source/common.d -------------------------------------------------------------------------------- /tests/env/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/env/.gitignore -------------------------------------------------------------------------------- /tests/env/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/env/dub.json -------------------------------------------------------------------------------- /tests/env/repro.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/env/repro.bat -------------------------------------------------------------------------------- /tests/env/simport/main.inl: -------------------------------------------------------------------------------- 1 | void main() 2 | { 3 | import std; 4 | writeln("Everything OK."); 5 | } -------------------------------------------------------------------------------- /tests/env/source/main.d: -------------------------------------------------------------------------------- 1 | mixin(import("main.inl")); -------------------------------------------------------------------------------- /tests/gcc/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/gcc/dub.json -------------------------------------------------------------------------------- /tests/gcc/source/gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/gcc/source/gcc.c -------------------------------------------------------------------------------- /tests/gxx/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/gxx/dub.json -------------------------------------------------------------------------------- /tests/gxx/source/gcc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/gxx/source/gcc.cc -------------------------------------------------------------------------------- /tests/multi_lang/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/multi_lang/.gitignore -------------------------------------------------------------------------------- /tests/multi_lang/c_dep/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/multi_lang/c_dep/dub.json -------------------------------------------------------------------------------- /tests/multi_lang/c_dep/source/another_dep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/multi_lang/c_dep/source/another_dep.c -------------------------------------------------------------------------------- /tests/multi_lang/c_dep/source/some_dep.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void CFunction() 4 | { 5 | printf("Hello from C and Redub\n"); 6 | } -------------------------------------------------------------------------------- /tests/multi_lang/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/multi_lang/dub.json -------------------------------------------------------------------------------- /tests/multi_lang/dub.selections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/multi_lang/dub.selections.json -------------------------------------------------------------------------------- /tests/multi_lang/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/multi_lang/source/app.d -------------------------------------------------------------------------------- /tests/platforms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/platforms/.gitignore -------------------------------------------------------------------------------- /tests/platforms/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/platforms/dub.json -------------------------------------------------------------------------------- /tests/platforms/extra/linux/platform.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/platforms/extra/linux/platform.d -------------------------------------------------------------------------------- /tests/platforms/extra/osx/platform.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/platforms/extra/osx/platform.d -------------------------------------------------------------------------------- /tests/platforms/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/platforms/source/app.d -------------------------------------------------------------------------------- /tests/plugin_test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/plugin_test/.gitignore -------------------------------------------------------------------------------- /tests/plugin_test/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/plugin_test/dub.json -------------------------------------------------------------------------------- /tests/plugin_test/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/plugin_test/source/app.d -------------------------------------------------------------------------------- /tests/plugin_test/source/imports.txt: -------------------------------------------------------------------------------- 1 | app -------------------------------------------------------------------------------- /tests/preb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/preb/.gitignore -------------------------------------------------------------------------------- /tests/preb/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/preb/dub.json -------------------------------------------------------------------------------- /tests/preb/other/test.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/preb/other/test.d -------------------------------------------------------------------------------- /tests/preb/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/preb/source/app.d -------------------------------------------------------------------------------- /tests/redub_lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/redub_lib/.gitignore -------------------------------------------------------------------------------- /tests/redub_lib/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/redub_lib/dub.json -------------------------------------------------------------------------------- /tests/redub_lib/dub.selections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/redub_lib/dub.selections.json -------------------------------------------------------------------------------- /tests/redub_lib/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/redub_lib/source/app.d -------------------------------------------------------------------------------- /tests/sLib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/sLib/.gitignore -------------------------------------------------------------------------------- /tests/sLib/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/sLib/dub.json -------------------------------------------------------------------------------- /tests/sLib/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/sLib/source/app.d -------------------------------------------------------------------------------- /tests/sLib/special/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/sLib/special/dub.json -------------------------------------------------------------------------------- /tests/sLib/special/source/application.d: -------------------------------------------------------------------------------- 1 | module application; 2 | 3 | string getSpecial(){return "Kame";} -------------------------------------------------------------------------------- /tests/subcfg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/subcfg/.gitignore -------------------------------------------------------------------------------- /tests/subcfg/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/subcfg/dub.json -------------------------------------------------------------------------------- /tests/subcfg/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/subcfg/source/app.d -------------------------------------------------------------------------------- /tests/subcfg/test/app2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/subcfg/test/app2.d -------------------------------------------------------------------------------- /tests/tarsd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/tarsd/.gitignore -------------------------------------------------------------------------------- /tests/tarsd/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/tarsd/dub.json -------------------------------------------------------------------------------- /tests/tarsd/dub.selections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/tarsd/dub.selections.json -------------------------------------------------------------------------------- /tests/tarsd/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/tarsd/source/app.d -------------------------------------------------------------------------------- /tests/vec-bench/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/vec-bench/.gitignore -------------------------------------------------------------------------------- /tests/vec-bench/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/vec-bench/dub.json -------------------------------------------------------------------------------- /tests/vec-bench/dub.selections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/vec-bench/dub.selections.json -------------------------------------------------------------------------------- /tests/vec-bench/source/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/vec-bench/source/main.d -------------------------------------------------------------------------------- /tests/vibehello/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/vibehello/.gitignore -------------------------------------------------------------------------------- /tests/vibehello/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/vibehello/dub.json -------------------------------------------------------------------------------- /tests/vibehello/dub.selections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/vibehello/dub.selections.json -------------------------------------------------------------------------------- /tests/vibehello/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrcSnm/redub/HEAD/tests/vibehello/source/app.d --------------------------------------------------------------------------------