mirror of
https://github.com/launchbadge/sqlx.git
synced 2026-04-09 19:56:43 +00:00
replace bitflags::_core with std
for some reason IntelliJ-Rust reaches for this first
This commit is contained in:
committed by
Ryan Leckey
parent
5192983093
commit
786deecc36
@@ -2,7 +2,7 @@ use super::{connection::Step, Connection, Postgres};
|
||||
use crate::{backend::Backend, describe::{Describe, ResultField}, executor::Executor, params::{IntoQueryParameters, QueryParameters}, row::FromRow, url::Url, Error};
|
||||
use futures_core::{future::BoxFuture, stream::BoxStream, Future};
|
||||
use crate::postgres::query::PostgresQueryParameters;
|
||||
use bitflags::_core::pin::Pin;
|
||||
use std::pin::Pin;
|
||||
|
||||
impl Connection {
|
||||
async fn prepare_cached(&mut self, query: &str, params: &PostgresQueryParameters) -> crate::Result<String> {
|
||||
|
||||
@@ -4,7 +4,7 @@ use crate::{Error, Backend};
|
||||
use futures_core::Future;
|
||||
use futures_core::future::BoxFuture;
|
||||
use std::net::SocketAddr;
|
||||
use bitflags::_core::pin::Pin;
|
||||
use std::pin::Pin;
|
||||
|
||||
mod backend;
|
||||
mod connection;
|
||||
|
||||
Reference in New Issue
Block a user