mirror of
https://github.com/RustPython/Parser.git
synced 2025-07-09 22:25:23 +00:00
remove #[macro_use]
This commit is contained in:
parent
bf3f3eca62
commit
90da5ba54a
2 changed files with 1 additions and 2 deletions
|
@ -38,6 +38,7 @@ use crate::{
|
||||||
string::FStringErrorType,
|
string::FStringErrorType,
|
||||||
token::{StringKind, Tok},
|
token::{StringKind, Tok},
|
||||||
};
|
};
|
||||||
|
use log::trace;
|
||||||
use num_bigint::BigInt;
|
use num_bigint::BigInt;
|
||||||
use num_traits::{Num, Zero};
|
use num_traits::{Num, Zero};
|
||||||
use std::{char, cmp::Ordering, ops::Index, slice::SliceIndex, str::FromStr};
|
use std::{char, cmp::Ordering, ops::Index, slice::SliceIndex, str::FromStr};
|
||||||
|
|
|
@ -112,8 +112,6 @@
|
||||||
#![doc(html_logo_url = "https://raw.githubusercontent.com/RustPython/RustPython/main/logo.png")]
|
#![doc(html_logo_url = "https://raw.githubusercontent.com/RustPython/RustPython/main/logo.png")]
|
||||||
#![doc(html_root_url = "https://docs.rs/rustpython-parser/")]
|
#![doc(html_root_url = "https://docs.rs/rustpython-parser/")]
|
||||||
|
|
||||||
#[macro_use]
|
|
||||||
extern crate log;
|
|
||||||
pub use rustpython_ast as ast;
|
pub use rustpython_ast as ast;
|
||||||
|
|
||||||
mod function;
|
mod function;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue