├── .eslintrc.js ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE.md ├── README.md ├── crates ├── vercel_axum │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── vercel_runtime │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ ├── http.rs │ │ ├── lib.rs │ │ ├── request.rs │ │ └── response.rs ├── vercel_runtime_macro │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── vercel_runtime_router │ ├── Cargo.toml │ └── src │ ├── lib.rs │ └── snapshots │ ├── vercel_runtime_router__tests__dynamic_routing-10.snap │ ├── vercel_runtime_router__tests__dynamic_routing-11.snap │ ├── vercel_runtime_router__tests__dynamic_routing-12.snap │ ├── vercel_runtime_router__tests__dynamic_routing-13.snap │ ├── vercel_runtime_router__tests__dynamic_routing-14.snap │ ├── vercel_runtime_router__tests__dynamic_routing-15.snap │ ├── vercel_runtime_router__tests__dynamic_routing-16.snap │ ├── vercel_runtime_router__tests__dynamic_routing-17.snap │ ├── vercel_runtime_router__tests__dynamic_routing-18.snap │ ├── vercel_runtime_router__tests__dynamic_routing-19.snap │ ├── vercel_runtime_router__tests__dynamic_routing-2.snap │ ├── vercel_runtime_router__tests__dynamic_routing-20.snap │ ├── vercel_runtime_router__tests__dynamic_routing-21.snap │ ├── vercel_runtime_router__tests__dynamic_routing-22.snap │ ├── vercel_runtime_router__tests__dynamic_routing-23.snap │ ├── vercel_runtime_router__tests__dynamic_routing-24.snap │ ├── vercel_runtime_router__tests__dynamic_routing-3.snap │ ├── vercel_runtime_router__tests__dynamic_routing-4.snap │ ├── vercel_runtime_router__tests__dynamic_routing-5.snap │ ├── vercel_runtime_router__tests__dynamic_routing-6.snap │ ├── vercel_runtime_router__tests__dynamic_routing-7.snap │ ├── vercel_runtime_router__tests__dynamic_routing-8.snap │ ├── vercel_runtime_router__tests__dynamic_routing-9.snap │ └── vercel_runtime_router__tests__dynamic_routing.snap ├── examples ├── cron │ ├── .env.example │ ├── .gitignore │ ├── .vercelignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── api │ │ └── cron.rs │ ├── package.json │ ├── pnpm-lock.yaml │ ├── public │ │ └── .gitkeep │ └── vercel.json ├── nextjs │ ├── .eslintrc.json │ ├── .gitignore │ ├── .vercelignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── api │ │ └── rust.rs │ ├── components │ │ └── button.tsx │ ├── next.config.js │ ├── package.json │ ├── pages │ │ ├── _app.tsx │ │ ├── _document.tsx │ │ ├── api │ │ │ └── nodejs.ts │ │ └── index.tsx │ ├── pnpm-lock.yaml │ ├── postcss.config.js │ ├── public │ │ └── favicon.ico │ ├── styles │ │ └── globals.css │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── types │ │ └── module.d.ts │ └── vercel.json ├── route-merge │ ├── .gitignore │ ├── .vercelignore │ ├── Cargo.toml │ ├── api │ │ ├── [...all].rs │ │ ├── all │ │ │ └── [...slugs].rs │ │ ├── bar │ │ │ ├── [id].rs │ │ │ └── baz.rs │ │ ├── dynamic │ │ │ └── [path] │ │ │ │ ├── [id].rs │ │ │ │ └── static.rs │ │ ├── foo.rs │ │ ├── main.rs │ │ └── optional │ │ │ └── [[...slugs]].rs │ ├── package.json │ ├── src │ │ └── lib.rs │ └── vercel.json └── simple │ ├── .gitignore │ ├── .vercelignore │ ├── Cargo.toml │ ├── api │ ├── complex.rs │ ├── simple.rs │ └── user │ │ └── [id].rs │ ├── package.json │ ├── pnpm-lock.yaml │ ├── public │ └── .gitkeep │ ├── src-rs │ └── lib.rs │ └── vercel.json ├── jest.config.js ├── package.json ├── pnpm-lock.yaml ├── release.sh ├── rust-toolchain.toml ├── src ├── index.ts └── lib │ ├── cargo.ts │ ├── routes.test.ts │ ├── routes.ts │ ├── runtime.ts │ ├── rust-toolchain.ts │ └── utils.ts ├── test ├── fixtures.test.ts └── fixtures │ ├── 01-include-files │ ├── .gitignore │ ├── .vercelignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── api │ │ └── main.rs │ ├── package.json │ ├── probes.json │ ├── static │ │ ├── extra.txt │ │ ├── sample.txt │ │ └── zeit-white-triangle.svg │ └── vercel.json │ ├── 02-with-utility │ ├── .gitignore │ ├── .vercelignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── api │ │ └── user.rs │ ├── package.json │ ├── probes.json │ ├── src │ │ └── lib.rs │ └── vercel.json │ ├── 03-with-function │ ├── .gitignore │ ├── .vercelignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── api │ │ └── user.rs │ ├── package.json │ ├── probes.json │ └── vercel.json │ ├── 04-with-parameter │ ├── .gitignore │ ├── .vercelignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── api │ │ └── user │ │ │ └── [id].rs │ ├── package.json │ ├── probes.json │ └── vercel.json │ ├── 05-with-similar-entrypaths │ ├── .gitignore │ ├── .vercelignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── api │ │ ├── group │ │ │ └── [id].rs │ │ └── user │ │ │ └── [id].rs │ ├── package.json │ ├── probes.json │ └── vercel.json │ ├── 06-with-toolchain-override │ ├── .gitignore │ ├── .vercelignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── api │ │ └── handler.rs │ ├── build.sh │ ├── package.json │ ├── probes.json │ ├── rust-toolchain.toml │ ├── static │ │ └── toolchain.txt │ └── vercel.json │ └── 07-with-cargo-configuration │ ├── .cargo │ └── config.toml │ ├── .gitignore │ ├── .vercelignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── api │ └── handler.rs │ ├── build.sh │ ├── package.json │ ├── probes.json │ ├── rust-toolchain.toml │ ├── static │ └── cargo_config.txt │ └── vercel.json ├── tsconfig.json └── tsconfig.test.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/README.md -------------------------------------------------------------------------------- /crates/vercel_axum/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_axum/Cargo.toml -------------------------------------------------------------------------------- /crates/vercel_axum/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_axum/src/lib.rs -------------------------------------------------------------------------------- /crates/vercel_runtime/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /crates/vercel_runtime/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime/Cargo.lock -------------------------------------------------------------------------------- /crates/vercel_runtime/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime/Cargo.toml -------------------------------------------------------------------------------- /crates/vercel_runtime/src/http.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime/src/http.rs -------------------------------------------------------------------------------- /crates/vercel_runtime/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime/src/lib.rs -------------------------------------------------------------------------------- /crates/vercel_runtime/src/request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime/src/request.rs -------------------------------------------------------------------------------- /crates/vercel_runtime/src/response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime/src/response.rs -------------------------------------------------------------------------------- /crates/vercel_runtime_macro/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_macro/Cargo.toml -------------------------------------------------------------------------------- /crates/vercel_runtime_macro/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_macro/src/lib.rs -------------------------------------------------------------------------------- /crates/vercel_runtime_router/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/Cargo.toml -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/lib.rs -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-10.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-10.snap -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-11.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-11.snap -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-12.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-12.snap -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-13.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-13.snap -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-14.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-14.snap -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-15.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-15.snap -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-16.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-16.snap -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-17.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-17.snap -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-18.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-18.snap -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-19.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-19.snap -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-2.snap -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-20.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-20.snap -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-21.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-21.snap -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-22.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-22.snap -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-23.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-23.snap -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-24.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-24.snap -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-3.snap -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-4.snap -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-5.snap -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-6.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-6.snap -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-7.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-7.snap -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-8.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-8.snap -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-9.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing-9.snap -------------------------------------------------------------------------------- /crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/crates/vercel_runtime_router/src/snapshots/vercel_runtime_router__tests__dynamic_routing.snap -------------------------------------------------------------------------------- /examples/cron/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/cron/.env.example -------------------------------------------------------------------------------- /examples/cron/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | target/ 3 | node_modules/ 4 | .vercel 5 | .env 6 | -------------------------------------------------------------------------------- /examples/cron/.vercelignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /examples/cron/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/cron/Cargo.lock -------------------------------------------------------------------------------- /examples/cron/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/cron/Cargo.toml -------------------------------------------------------------------------------- /examples/cron/api/cron.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/cron/api/cron.rs -------------------------------------------------------------------------------- /examples/cron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/cron/package.json -------------------------------------------------------------------------------- /examples/cron/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/cron/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/cron/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/cron/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/cron/vercel.json -------------------------------------------------------------------------------- /examples/nextjs/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/nextjs/.eslintrc.json -------------------------------------------------------------------------------- /examples/nextjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/nextjs/.gitignore -------------------------------------------------------------------------------- /examples/nextjs/.vercelignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /examples/nextjs/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/nextjs/Cargo.lock -------------------------------------------------------------------------------- /examples/nextjs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/nextjs/Cargo.toml -------------------------------------------------------------------------------- /examples/nextjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/nextjs/README.md -------------------------------------------------------------------------------- /examples/nextjs/api/rust.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/nextjs/api/rust.rs -------------------------------------------------------------------------------- /examples/nextjs/components/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/nextjs/components/button.tsx -------------------------------------------------------------------------------- /examples/nextjs/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/nextjs/next.config.js -------------------------------------------------------------------------------- /examples/nextjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/nextjs/package.json -------------------------------------------------------------------------------- /examples/nextjs/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/nextjs/pages/_app.tsx -------------------------------------------------------------------------------- /examples/nextjs/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/nextjs/pages/_document.tsx -------------------------------------------------------------------------------- /examples/nextjs/pages/api/nodejs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/nextjs/pages/api/nodejs.ts -------------------------------------------------------------------------------- /examples/nextjs/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/nextjs/pages/index.tsx -------------------------------------------------------------------------------- /examples/nextjs/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/nextjs/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/nextjs/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/nextjs/postcss.config.js -------------------------------------------------------------------------------- /examples/nextjs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/nextjs/public/favicon.ico -------------------------------------------------------------------------------- /examples/nextjs/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/nextjs/styles/globals.css -------------------------------------------------------------------------------- /examples/nextjs/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/nextjs/tailwind.config.js -------------------------------------------------------------------------------- /examples/nextjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/nextjs/tsconfig.json -------------------------------------------------------------------------------- /examples/nextjs/types/module.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'shishua'; 2 | -------------------------------------------------------------------------------- /examples/nextjs/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/nextjs/vercel.json -------------------------------------------------------------------------------- /examples/route-merge/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | target/ 3 | node_modules/ 4 | .vercel 5 | .env 6 | -------------------------------------------------------------------------------- /examples/route-merge/.vercelignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /examples/route-merge/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/route-merge/Cargo.toml -------------------------------------------------------------------------------- /examples/route-merge/api/[...all].rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/route-merge/api/[...all].rs -------------------------------------------------------------------------------- /examples/route-merge/api/all/[...slugs].rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/route-merge/api/all/[...slugs].rs -------------------------------------------------------------------------------- /examples/route-merge/api/bar/[id].rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/route-merge/api/bar/[id].rs -------------------------------------------------------------------------------- /examples/route-merge/api/bar/baz.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/route-merge/api/bar/baz.rs -------------------------------------------------------------------------------- /examples/route-merge/api/dynamic/[path]/[id].rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/route-merge/api/dynamic/[path]/[id].rs -------------------------------------------------------------------------------- /examples/route-merge/api/dynamic/[path]/static.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/route-merge/api/dynamic/[path]/static.rs -------------------------------------------------------------------------------- /examples/route-merge/api/foo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/route-merge/api/foo.rs -------------------------------------------------------------------------------- /examples/route-merge/api/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/route-merge/api/main.rs -------------------------------------------------------------------------------- /examples/route-merge/api/optional/[[...slugs]].rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/route-merge/api/optional/[[...slugs]].rs -------------------------------------------------------------------------------- /examples/route-merge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/route-merge/package.json -------------------------------------------------------------------------------- /examples/route-merge/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/route-merge/src/lib.rs -------------------------------------------------------------------------------- /examples/route-merge/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/route-merge/vercel.json -------------------------------------------------------------------------------- /examples/simple/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | target/ 3 | node_modules/ 4 | .vercel 5 | .env 6 | -------------------------------------------------------------------------------- /examples/simple/.vercelignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /examples/simple/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/simple/Cargo.toml -------------------------------------------------------------------------------- /examples/simple/api/complex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/simple/api/complex.rs -------------------------------------------------------------------------------- /examples/simple/api/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/simple/api/simple.rs -------------------------------------------------------------------------------- /examples/simple/api/user/[id].rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/simple/api/user/[id].rs -------------------------------------------------------------------------------- /examples/simple/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/simple/package.json -------------------------------------------------------------------------------- /examples/simple/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/simple/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/simple/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/simple/src-rs/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/simple/src-rs/lib.rs -------------------------------------------------------------------------------- /examples/simple/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/examples/simple/vercel.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/release.sh -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "stable" 3 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib/cargo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/src/lib/cargo.ts -------------------------------------------------------------------------------- /src/lib/routes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/src/lib/routes.test.ts -------------------------------------------------------------------------------- /src/lib/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/src/lib/routes.ts -------------------------------------------------------------------------------- /src/lib/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/src/lib/runtime.ts -------------------------------------------------------------------------------- /src/lib/rust-toolchain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/src/lib/rust-toolchain.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /test/fixtures.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures.test.ts -------------------------------------------------------------------------------- /test/fixtures/01-include-files/.gitignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | -------------------------------------------------------------------------------- /test/fixtures/01-include-files/.vercelignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /test/fixtures/01-include-files/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/01-include-files/Cargo.lock -------------------------------------------------------------------------------- /test/fixtures/01-include-files/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/01-include-files/Cargo.toml -------------------------------------------------------------------------------- /test/fixtures/01-include-files/api/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/01-include-files/api/main.rs -------------------------------------------------------------------------------- /test/fixtures/01-include-files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/01-include-files/package.json -------------------------------------------------------------------------------- /test/fixtures/01-include-files/probes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/01-include-files/probes.json -------------------------------------------------------------------------------- /test/fixtures/01-include-files/static/extra.txt: -------------------------------------------------------------------------------- 1 | this is just an extra file! 2 | -------------------------------------------------------------------------------- /test/fixtures/01-include-files/static/sample.txt: -------------------------------------------------------------------------------- 1 | Include me in the lambda fs! 2 | -------------------------------------------------------------------------------- /test/fixtures/01-include-files/static/zeit-white-triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/01-include-files/static/zeit-white-triangle.svg -------------------------------------------------------------------------------- /test/fixtures/01-include-files/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/01-include-files/vercel.json -------------------------------------------------------------------------------- /test/fixtures/02-with-utility/.gitignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | -------------------------------------------------------------------------------- /test/fixtures/02-with-utility/.vercelignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /test/fixtures/02-with-utility/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/02-with-utility/Cargo.lock -------------------------------------------------------------------------------- /test/fixtures/02-with-utility/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/02-with-utility/Cargo.toml -------------------------------------------------------------------------------- /test/fixtures/02-with-utility/api/user.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/02-with-utility/api/user.rs -------------------------------------------------------------------------------- /test/fixtures/02-with-utility/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/02-with-utility/package.json -------------------------------------------------------------------------------- /test/fixtures/02-with-utility/probes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/02-with-utility/probes.json -------------------------------------------------------------------------------- /test/fixtures/02-with-utility/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/02-with-utility/src/lib.rs -------------------------------------------------------------------------------- /test/fixtures/02-with-utility/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/02-with-utility/vercel.json -------------------------------------------------------------------------------- /test/fixtures/03-with-function/.gitignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | -------------------------------------------------------------------------------- /test/fixtures/03-with-function/.vercelignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /test/fixtures/03-with-function/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/03-with-function/Cargo.lock -------------------------------------------------------------------------------- /test/fixtures/03-with-function/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/03-with-function/Cargo.toml -------------------------------------------------------------------------------- /test/fixtures/03-with-function/api/user.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/03-with-function/api/user.rs -------------------------------------------------------------------------------- /test/fixtures/03-with-function/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/03-with-function/package.json -------------------------------------------------------------------------------- /test/fixtures/03-with-function/probes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/03-with-function/probes.json -------------------------------------------------------------------------------- /test/fixtures/03-with-function/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/03-with-function/vercel.json -------------------------------------------------------------------------------- /test/fixtures/04-with-parameter/.gitignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | -------------------------------------------------------------------------------- /test/fixtures/04-with-parameter/.vercelignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /test/fixtures/04-with-parameter/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/04-with-parameter/Cargo.lock -------------------------------------------------------------------------------- /test/fixtures/04-with-parameter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/04-with-parameter/Cargo.toml -------------------------------------------------------------------------------- /test/fixtures/04-with-parameter/api/user/[id].rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/04-with-parameter/api/user/[id].rs -------------------------------------------------------------------------------- /test/fixtures/04-with-parameter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/04-with-parameter/package.json -------------------------------------------------------------------------------- /test/fixtures/04-with-parameter/probes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/04-with-parameter/probes.json -------------------------------------------------------------------------------- /test/fixtures/04-with-parameter/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/04-with-parameter/vercel.json -------------------------------------------------------------------------------- /test/fixtures/05-with-similar-entrypaths/.gitignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | -------------------------------------------------------------------------------- /test/fixtures/05-with-similar-entrypaths/.vercelignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /test/fixtures/05-with-similar-entrypaths/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/05-with-similar-entrypaths/Cargo.lock -------------------------------------------------------------------------------- /test/fixtures/05-with-similar-entrypaths/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/05-with-similar-entrypaths/Cargo.toml -------------------------------------------------------------------------------- /test/fixtures/05-with-similar-entrypaths/api/group/[id].rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/05-with-similar-entrypaths/api/group/[id].rs -------------------------------------------------------------------------------- /test/fixtures/05-with-similar-entrypaths/api/user/[id].rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/05-with-similar-entrypaths/api/user/[id].rs -------------------------------------------------------------------------------- /test/fixtures/05-with-similar-entrypaths/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/05-with-similar-entrypaths/package.json -------------------------------------------------------------------------------- /test/fixtures/05-with-similar-entrypaths/probes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/05-with-similar-entrypaths/probes.json -------------------------------------------------------------------------------- /test/fixtures/05-with-similar-entrypaths/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/05-with-similar-entrypaths/vercel.json -------------------------------------------------------------------------------- /test/fixtures/06-with-toolchain-override/.gitignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | -------------------------------------------------------------------------------- /test/fixtures/06-with-toolchain-override/.vercelignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /test/fixtures/06-with-toolchain-override/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/06-with-toolchain-override/Cargo.lock -------------------------------------------------------------------------------- /test/fixtures/06-with-toolchain-override/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/06-with-toolchain-override/Cargo.toml -------------------------------------------------------------------------------- /test/fixtures/06-with-toolchain-override/api/handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/06-with-toolchain-override/api/handler.rs -------------------------------------------------------------------------------- /test/fixtures/06-with-toolchain-override/build.sh: -------------------------------------------------------------------------------- 1 | rustc --version > static/toolchain.txt 2 | -------------------------------------------------------------------------------- /test/fixtures/06-with-toolchain-override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/06-with-toolchain-override/package.json -------------------------------------------------------------------------------- /test/fixtures/06-with-toolchain-override/probes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/06-with-toolchain-override/probes.json -------------------------------------------------------------------------------- /test/fixtures/06-with-toolchain-override/rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "nightly" 3 | -------------------------------------------------------------------------------- /test/fixtures/06-with-toolchain-override/static/toolchain.txt: -------------------------------------------------------------------------------- 1 | rustc 1.72.0-nightly (d59363ad0 2023-06-01) 2 | -------------------------------------------------------------------------------- /test/fixtures/06-with-toolchain-override/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/06-with-toolchain-override/vercel.json -------------------------------------------------------------------------------- /test/fixtures/07-with-cargo-configuration/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/07-with-cargo-configuration/.cargo/config.toml -------------------------------------------------------------------------------- /test/fixtures/07-with-cargo-configuration/.gitignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | -------------------------------------------------------------------------------- /test/fixtures/07-with-cargo-configuration/.vercelignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /test/fixtures/07-with-cargo-configuration/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/07-with-cargo-configuration/Cargo.lock -------------------------------------------------------------------------------- /test/fixtures/07-with-cargo-configuration/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/07-with-cargo-configuration/Cargo.toml -------------------------------------------------------------------------------- /test/fixtures/07-with-cargo-configuration/api/handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/07-with-cargo-configuration/api/handler.rs -------------------------------------------------------------------------------- /test/fixtures/07-with-cargo-configuration/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/07-with-cargo-configuration/build.sh -------------------------------------------------------------------------------- /test/fixtures/07-with-cargo-configuration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/07-with-cargo-configuration/package.json -------------------------------------------------------------------------------- /test/fixtures/07-with-cargo-configuration/probes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/07-with-cargo-configuration/probes.json -------------------------------------------------------------------------------- /test/fixtures/07-with-cargo-configuration/rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "nightly" 3 | -------------------------------------------------------------------------------- /test/fixtures/07-with-cargo-configuration/static/cargo_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/07-with-cargo-configuration/static/cargo_config.txt -------------------------------------------------------------------------------- /test/fixtures/07-with-cargo-configuration/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/test/fixtures/07-with-cargo-configuration/vercel.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vercel-community/rust/HEAD/tsconfig.test.json --------------------------------------------------------------------------------