Skip to main content
Module

x/mongo/build.ts

MongoDB driver for Deno
Extremely Popular
Go to Latest
File
export async function cargoBuild() { const cargoCommand = Deno.run({ cmd: ["cargo", "build", "--release", "--locked"], stderr: "inherit", stdin: "inherit", stdout: "inherit", }); await cargoCommand.status();}