This repository was archived by the owner on Mar 21, 2025. It is now read-only.

Description
Hello, I've been trying to install Prisma for my project, but I cannot generate the client (prisma.rs)
I don't have any error, I only see this:
Running `R:\Code\kady\Tofu\target\debug\prisma-cli.exe generate`
Environment variables loaded from .env
Prisma schema loaded from prisma\schema.prisma
when using cargo prisma generate and my computer goes crazy with rustc and the Microsoft Linker, but no files or anything.
I have the following schema file:
generator client {
provider = "cargo prisma"
output = "../src/prisma.rs"
}
datasource db {
provider = "mysql"
url = env("DATABASE_URL")
}
model User {
id String @id @db.VarChar(36)
}
And I created a crate named prisma-cli exactly as explained on the documentation:
