-
SetupI am using Windows 10, created a new project, was able to run migrations but debugging is crashing. Versions
Feature Flags
Problem DescriptionI've spent 2 days so far on this, I hope it is not some stupid issue but my project is having issues working with Postgres. Steps to reproduceIf I use diesel = { workspace = true, features = ["postgres", "serde_json", "chrono"] } If I add I get
What I tried
I understand it may be an issue outside the diesel package. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I've converted your issue to an discussion entry as it's not a bug in diesel, but an issue with your local development environment. Please do fill future questions in the discussion part of the repository instead, as the issue part is strictly for bugs only. That written: It's always hard to help people with such environment issues, as they only depend on your local environment and you are the only person that has access to that environment. I can point to diesels CI config as we also test things on windows there: https://github.com/diesel-rs/diesel/blob/master/.github/workflows/ci.yml#L153-L162. That works in CI, so if you follow that setup step by step you should be able to get it up and running.
This build error looks like you miss some perl module to build openssl. See the error message for more details:
|
Beta Was this translation helpful? Give feedback.
I've converted your issue to an discussion entry as it's not a bug in diesel, but an issue with your local development environment. Please do fill future questions in the discussion part of the repository instead, as the issue part is strictly for bugs only.
That written: It's always hard to help people with such environment issues, as they only depend on your local environment and you are the only person that has access to that environment.
I can point to diesels CI config as we also test things on windows there: https://github.com/diesel-rs/diesel/blob/master/.github/workflows/ci.yml#L153-L162. That works in CI, so if you follow that setup step by step you should be able to get it up an…