We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69a060f commit b475fbbCopy full SHA for b475fbb
2 files changed
src/ast/mod.rs
@@ -29,7 +29,6 @@ use helpers::{
29
};
30
31
use core::cmp::Ordering;
32
-use core::fmt::Formatter;
33
use core::ops::Deref;
34
use core::{
35
fmt::{self, Display},
@@ -7994,7 +7993,7 @@ pub struct CreateServerStatement {
7994
7993
}
7995
7996
impl fmt::Display for CreateServerStatement {
7997
- fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
+ fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
7998
let CreateServerStatement {
7999
name,
8000
if_not_exists,
src/lib.rs
@@ -163,7 +163,6 @@ extern crate alloc;
163
#[macro_use]
164
#[cfg(test)]
165
extern crate pretty_assertions;
166
-extern crate core;
167
168
pub mod ast;
169
0 commit comments