mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-29 21:00:54 +00:00
Restrict #[allow(unused)] to mariadb::protocol
This commit is contained in:
parent
b185dcfb0e
commit
b23b42e554
@ -1,6 +1,3 @@
|
||||
// TODO: Remove after acitve development
|
||||
#![allow(unused)]
|
||||
|
||||
mod backend;
|
||||
mod connection;
|
||||
mod establish;
|
||||
@ -14,12 +11,3 @@ pub use self::{
|
||||
backend::MariaDb, connection::MariaDbRawConnection, query::MariaDbQueryParameters,
|
||||
row::MariaDbRow,
|
||||
};
|
||||
|
||||
// pub use io::{BufExt, BufMutExt};
|
||||
// pub use protocol::{
|
||||
// Capabilities, ColumnDefPacket, ColumnPacket, Decode, Encode, FieldDetailFlag, FieldType,
|
||||
// ProtocolType, ServerStatusFlag, SessionChangeType, StmtExecFlag,
|
||||
// };
|
||||
|
||||
// 1) Get protocol compiling using io::Buf / io::BufMut
|
||||
// 2) Switch MariaDbRawConnection to use io::BufStream
|
||||
|
||||
@ -1,3 +1,7 @@
|
||||
// Many protocol types are implemented but unused (currently). The hope is to eventually
|
||||
// work them all into the (raw) connection type.
|
||||
#![allow(unused)]
|
||||
|
||||
// Reference: https://mariadb.com/kb/en/library/connection
|
||||
// Packets: https://mariadb.com/kb/en/library/0-packet
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user