Closed maxnachlinger closed 4 years ago
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
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
: