1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 20:17:45 +00:00

seq: Move extendedbigdecimal.rs to uucore/features/format

Will make it possible to directly print ExtendedBigDecimal in `seq`,
and gradually get rid of limited f64 precision in other tools
(e.g. `printf`).

Changes are mostly mechanical, we reexport ExtendedBigDecimal directly
in format to keep the imports slightly shorter.
This commit is contained in:
Nicolas Boichat 2025-03-05 10:04:50 +01:00 committed by Sylvestre Ledru
parent b4a9b89f4a
commit 2103646ff7
8 changed files with 15 additions and 12 deletions

2
Cargo.lock generated
View file

@ -3504,6 +3504,7 @@ dependencies = [
name = "uucore"
version = "0.0.30"
dependencies = [
"bigdecimal",
"blake2b_simd",
"blake3",
"chrono",
@ -3523,6 +3524,7 @@ dependencies = [
"md-5",
"memchr",
"nix",
"num-traits",
"number_prefix",
"os_display",
"regex",