mirror of
https://github.com/RustPython/Parser.git
synced 2025-08-31 15:48:24 +00:00
num_bigint to malachite_bigint
This commit is contained in:
parent
33a3c407a9
commit
6b90a006a1
13 changed files with 15 additions and 16 deletions
|
@ -12,5 +12,5 @@ rustpython-literal = { workspace = true }
|
|||
|
||||
bitflags = "2.3.1"
|
||||
itertools = "0.10.5"
|
||||
num-bigint = { workspace = true }
|
||||
malachite-bigint = { workspace = true }
|
||||
num-traits = { workspace = true }
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
//! Implementation of Printf-Style string formatting
|
||||
//! as per the [Python Docs](https://docs.python.org/3/library/stdtypes.html#printf-style-string-formatting).
|
||||
use bitflags::bitflags;
|
||||
use num_bigint::{BigInt, Sign};
|
||||
use malachite_bigint::{BigInt, Sign};
|
||||
use num_traits::Signed;
|
||||
use rustpython_literal::{float, format::Case};
|
||||
use std::{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use itertools::{Itertools, PeekingNext};
|
||||
use num_bigint::{BigInt, Sign};
|
||||
use malachite_bigint::{BigInt, Sign};
|
||||
use num_traits::{cast::ToPrimitive, Signed};
|
||||
use rustpython_literal::float;
|
||||
use rustpython_literal::format::Case;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue