├── .github ├── dotslash-config.json └── workflows │ ├── build-and-test.yml │ └── release.yml ├── .gitignore ├── .rustfmt.toml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── docs └── MANUAL.md ├── examples ├── 01-intro │ ├── .buckconfig │ ├── .buckroot │ ├── .gitignore │ ├── BUCK │ ├── README.md │ ├── project │ │ ├── BUCK │ │ └── src │ │ │ └── main.rs │ ├── reindeer.toml │ ├── setup.sh │ ├── third-party │ │ ├── .gitignore │ │ ├── BUCK │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── top │ │ │ └── main.rs │ └── toolchains │ │ └── BUCK ├── 02-hybrid │ ├── .buckconfig │ ├── .buckroot │ ├── .buckversion │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── project │ │ ├── BUCK │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── reindeer.toml │ ├── setup.sh │ ├── third-party │ │ ├── .gitignore │ │ └── BUCK │ └── toolchains │ │ ├── .buckconfig │ │ └── BUCK └── 03-complex-fixups │ ├── .buckconfig │ ├── .buckroot │ ├── .buckversion │ ├── .gitignore │ ├── PACKAGE │ ├── README.md │ ├── config │ ├── mode │ │ ├── BUCK │ │ └── constraints │ │ │ └── BUCK │ └── set_cfg_constructor.bzl │ ├── project │ ├── BUCK │ └── test.rs │ ├── reindeer.toml │ ├── setup.sh │ ├── third-party │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── fixups │ │ ├── blake3 │ │ │ └── fixups.toml │ │ ├── crossbeam-utils │ │ │ └── fixups.toml │ │ ├── libc │ │ │ └── fixups.toml │ │ └── typenum │ │ │ └── fixups.toml │ ├── macros │ │ └── rust_third_party.bzl │ └── top │ │ └── main.rs │ └── toolchains │ ├── .buckconfig │ └── BUCK ├── reindeer.exe ├── rust-toolchain ├── src ├── audit_sec.rs ├── buck.rs ├── buckify.rs ├── cargo.rs ├── cfg.rs ├── collection.rs ├── config.rs ├── default_platforms.toml ├── fixups.rs ├── fixups │ ├── buildscript.rs │ └── config.rs ├── glob.rs ├── index.rs ├── lockfile.rs ├── main.rs ├── path.rs ├── platform.rs ├── remap.rs ├── srcfiles.rs ├── subtarget.rs ├── tp_metadata.rs ├── unused.rs └── vendor.rs └── test ├── base ├── Cargo.lock └── Cargo.toml ├── common ├── complex │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── simple-two │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── simple │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── with_buildscript │ ├── Cargo.toml │ ├── build.rs │ └── src │ └── lib.rs ├── extramissingmeta └── Cargo.toml └── with_fixups ├── Cargo.toml └── fixups └── with_buildscript └── fixups.toml /.github/dotslash-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/.github/dotslash-config.json -------------------------------------------------------------------------------- /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/.rustfmt.toml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/README.md -------------------------------------------------------------------------------- /docs/MANUAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/docs/MANUAL.md -------------------------------------------------------------------------------- /examples/01-intro/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/01-intro/.buckconfig -------------------------------------------------------------------------------- /examples/01-intro/.buckroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/01-intro/.gitignore: -------------------------------------------------------------------------------- 1 | /buck-out 2 | /target 3 | -------------------------------------------------------------------------------- /examples/01-intro/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/01-intro/BUCK -------------------------------------------------------------------------------- /examples/01-intro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/01-intro/README.md -------------------------------------------------------------------------------- /examples/01-intro/project/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/01-intro/project/BUCK -------------------------------------------------------------------------------- /examples/01-intro/project/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/01-intro/project/src/main.rs -------------------------------------------------------------------------------- /examples/01-intro/reindeer.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/01-intro/reindeer.toml -------------------------------------------------------------------------------- /examples/01-intro/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/01-intro/setup.sh -------------------------------------------------------------------------------- /examples/01-intro/third-party/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/01-intro/third-party/.gitignore -------------------------------------------------------------------------------- /examples/01-intro/third-party/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/01-intro/third-party/BUCK -------------------------------------------------------------------------------- /examples/01-intro/third-party/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/01-intro/third-party/Cargo.lock -------------------------------------------------------------------------------- /examples/01-intro/third-party/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/01-intro/third-party/Cargo.toml -------------------------------------------------------------------------------- /examples/01-intro/third-party/top/main.rs: -------------------------------------------------------------------------------- 1 | fn main() {} 2 | -------------------------------------------------------------------------------- /examples/01-intro/toolchains/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/01-intro/toolchains/BUCK -------------------------------------------------------------------------------- /examples/02-hybrid/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/02-hybrid/.buckconfig -------------------------------------------------------------------------------- /examples/02-hybrid/.buckroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/02-hybrid/.buckversion: -------------------------------------------------------------------------------- 1 | latest 2 | -------------------------------------------------------------------------------- /examples/02-hybrid/.gitignore: -------------------------------------------------------------------------------- 1 | /buck-out 2 | /target 3 | -------------------------------------------------------------------------------- /examples/02-hybrid/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/02-hybrid/Cargo.lock -------------------------------------------------------------------------------- /examples/02-hybrid/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/02-hybrid/Cargo.toml -------------------------------------------------------------------------------- /examples/02-hybrid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/02-hybrid/README.md -------------------------------------------------------------------------------- /examples/02-hybrid/project/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/02-hybrid/project/BUCK -------------------------------------------------------------------------------- /examples/02-hybrid/project/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/02-hybrid/project/Cargo.toml -------------------------------------------------------------------------------- /examples/02-hybrid/project/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/02-hybrid/project/src/main.rs -------------------------------------------------------------------------------- /examples/02-hybrid/reindeer.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/02-hybrid/reindeer.toml -------------------------------------------------------------------------------- /examples/02-hybrid/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/02-hybrid/setup.sh -------------------------------------------------------------------------------- /examples/02-hybrid/third-party/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/02-hybrid/third-party/.gitignore -------------------------------------------------------------------------------- /examples/02-hybrid/third-party/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/02-hybrid/third-party/BUCK -------------------------------------------------------------------------------- /examples/02-hybrid/toolchains/.buckconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/02-hybrid/toolchains/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/02-hybrid/toolchains/BUCK -------------------------------------------------------------------------------- /examples/03-complex-fixups/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/03-complex-fixups/.buckconfig -------------------------------------------------------------------------------- /examples/03-complex-fixups/.buckroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/03-complex-fixups/.buckversion: -------------------------------------------------------------------------------- 1 | latest 2 | -------------------------------------------------------------------------------- /examples/03-complex-fixups/.gitignore: -------------------------------------------------------------------------------- 1 | /buck-out 2 | -------------------------------------------------------------------------------- /examples/03-complex-fixups/PACKAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/03-complex-fixups/PACKAGE -------------------------------------------------------------------------------- /examples/03-complex-fixups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/03-complex-fixups/README.md -------------------------------------------------------------------------------- /examples/03-complex-fixups/config/mode/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/03-complex-fixups/config/mode/BUCK -------------------------------------------------------------------------------- /examples/03-complex-fixups/config/mode/constraints/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/03-complex-fixups/config/mode/constraints/BUCK -------------------------------------------------------------------------------- /examples/03-complex-fixups/config/set_cfg_constructor.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/03-complex-fixups/config/set_cfg_constructor.bzl -------------------------------------------------------------------------------- /examples/03-complex-fixups/project/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/03-complex-fixups/project/BUCK -------------------------------------------------------------------------------- /examples/03-complex-fixups/project/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/03-complex-fixups/project/test.rs -------------------------------------------------------------------------------- /examples/03-complex-fixups/reindeer.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/03-complex-fixups/reindeer.toml -------------------------------------------------------------------------------- /examples/03-complex-fixups/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/03-complex-fixups/setup.sh -------------------------------------------------------------------------------- /examples/03-complex-fixups/third-party/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/03-complex-fixups/third-party/.gitignore -------------------------------------------------------------------------------- /examples/03-complex-fixups/third-party/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/03-complex-fixups/third-party/Cargo.lock -------------------------------------------------------------------------------- /examples/03-complex-fixups/third-party/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/03-complex-fixups/third-party/Cargo.toml -------------------------------------------------------------------------------- /examples/03-complex-fixups/third-party/fixups/blake3/fixups.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/03-complex-fixups/third-party/fixups/blake3/fixups.toml -------------------------------------------------------------------------------- /examples/03-complex-fixups/third-party/fixups/crossbeam-utils/fixups.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/03-complex-fixups/third-party/fixups/crossbeam-utils/fixups.toml -------------------------------------------------------------------------------- /examples/03-complex-fixups/third-party/fixups/libc/fixups.toml: -------------------------------------------------------------------------------- 1 | buildscript.run = true 2 | -------------------------------------------------------------------------------- /examples/03-complex-fixups/third-party/fixups/typenum/fixups.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/03-complex-fixups/third-party/fixups/typenum/fixups.toml -------------------------------------------------------------------------------- /examples/03-complex-fixups/third-party/macros/rust_third_party.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/03-complex-fixups/third-party/macros/rust_third_party.bzl -------------------------------------------------------------------------------- /examples/03-complex-fixups/third-party/top/main.rs: -------------------------------------------------------------------------------- 1 | // Dummy source to keep Cargo happy 2 | 3 | fn main() {} 4 | -------------------------------------------------------------------------------- /examples/03-complex-fixups/toolchains/.buckconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/03-complex-fixups/toolchains/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/examples/03-complex-fixups/toolchains/BUCK -------------------------------------------------------------------------------- /reindeer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/reindeer.exe -------------------------------------------------------------------------------- /rust-toolchain: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "nightly-2025-09-14" 3 | -------------------------------------------------------------------------------- /src/audit_sec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/src/audit_sec.rs -------------------------------------------------------------------------------- /src/buck.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/src/buck.rs -------------------------------------------------------------------------------- /src/buckify.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/src/buckify.rs -------------------------------------------------------------------------------- /src/cargo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/src/cargo.rs -------------------------------------------------------------------------------- /src/cfg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/src/cfg.rs -------------------------------------------------------------------------------- /src/collection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/src/collection.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/default_platforms.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/src/default_platforms.toml -------------------------------------------------------------------------------- /src/fixups.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/src/fixups.rs -------------------------------------------------------------------------------- /src/fixups/buildscript.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/src/fixups/buildscript.rs -------------------------------------------------------------------------------- /src/fixups/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/src/fixups/config.rs -------------------------------------------------------------------------------- /src/glob.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/src/glob.rs -------------------------------------------------------------------------------- /src/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/src/index.rs -------------------------------------------------------------------------------- /src/lockfile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/src/lockfile.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/src/path.rs -------------------------------------------------------------------------------- /src/platform.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/src/platform.rs -------------------------------------------------------------------------------- /src/remap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/src/remap.rs -------------------------------------------------------------------------------- /src/srcfiles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/src/srcfiles.rs -------------------------------------------------------------------------------- /src/subtarget.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/src/subtarget.rs -------------------------------------------------------------------------------- /src/tp_metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/src/tp_metadata.rs -------------------------------------------------------------------------------- /src/unused.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/src/unused.rs -------------------------------------------------------------------------------- /src/vendor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/src/vendor.rs -------------------------------------------------------------------------------- /test/base/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/test/base/Cargo.lock -------------------------------------------------------------------------------- /test/base/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/test/base/Cargo.toml -------------------------------------------------------------------------------- /test/common/complex/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/test/common/complex/Cargo.toml -------------------------------------------------------------------------------- /test/common/complex/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/test/common/complex/src/lib.rs -------------------------------------------------------------------------------- /test/common/simple-two/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/test/common/simple-two/Cargo.toml -------------------------------------------------------------------------------- /test/common/simple-two/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/test/common/simple-two/src/lib.rs -------------------------------------------------------------------------------- /test/common/simple/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/test/common/simple/Cargo.toml -------------------------------------------------------------------------------- /test/common/simple/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/test/common/simple/src/lib.rs -------------------------------------------------------------------------------- /test/common/with_buildscript/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/test/common/with_buildscript/Cargo.toml -------------------------------------------------------------------------------- /test/common/with_buildscript/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/test/common/with_buildscript/build.rs -------------------------------------------------------------------------------- /test/common/with_buildscript/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/test/common/with_buildscript/src/lib.rs -------------------------------------------------------------------------------- /test/extramissingmeta/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/test/extramissingmeta/Cargo.toml -------------------------------------------------------------------------------- /test/with_fixups/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/test/with_fixups/Cargo.toml -------------------------------------------------------------------------------- /test/with_fixups/fixups/with_buildscript/fixups.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/reindeer/HEAD/test/with_fixups/fixups/with_buildscript/fixups.toml --------------------------------------------------------------------------------