You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.
This may well be a local issue, but I'm getting this from the new fix-mssql-compilation branch:
My cargo file deps:
[dependencies]
tokio = { version = "0.2", features = ["full"]}
quaint = { git = "https://github.com/prisma/quaint.git", branch = "fix-mssql-compilation", features = ["full-mssql"]}
and the error:
error[E0432]: unresolved import `quaint::pooled`
--> src/main.rs:1:26
|
1 | use quaint::{prelude::*, pooled::Quaint};
| ^^^^^^ could not find `pooled` in `quaint`
Looks like master is still unhappy when compiling with the full-mssql feature turned on. Here's the failing Travis build and here's the silly test project. I'm still quite new to Rust but plan on taking a crack at these errors to see if I can help :)
Edit: I'll open a new issue for this
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hey awesome quaint maintainers :) I'm getting this error when attempting to compile quaint:
In case it helps, here are my cargo dependencies:
and here's my silly test
main.rs
:The text was updated successfully, but these errors were encountered: