1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 19:17:43 +00:00

chore: cleanup workspace crates (#8058)

* chore: cleanup workspace crates

* properly add all crates to the workspace cargo.toml as members
  * except `fuzz` because it still has some issues, TBD
* use quotes around `true` and `false` to ensure there is no bool confusion
* remove a few leftover readme comments
* mark all unpublishable crates as `publish = false` to avoid accidental publishing
* Add `uutests` to the main workspace

* grammar

* a bit more cleanup based on feedback

* revert true/false

* Update tests/benches/factor dependencies
This commit is contained in:
Yuri Astrakhan 2025-06-06 07:56:08 -04:00 committed by GitHub
parent 4d40671d79
commit 60c55d7c07
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 206 additions and 23 deletions

View file

@ -2,21 +2,20 @@
name = "uu_factor_benches"
version = "0.0.0"
authors = ["nicoo <nicoo@debian.org>"]
license = "MIT"
description = "Benchmarks for the uu_factor integer factorization tool"
homepage = "https://github.com/uutils/coreutils"
edition = "2024"
[workspace]
edition.workspace = true
homepage.workspace = true
license.workspace = true
publish = false
[dependencies]
uu_factor = { path = "../../../src/uu/factor" }
[dev-dependencies]
array-init = "2.0.0"
criterion = "0.3"
rand = "0.8"
rand_chacha = "0.3.1"
criterion = "0.6.0"
rand = "0.9.1"
rand_chacha = "0.9.0"
num-bigint = "0.4.4"
num-prime = "0.4.4"
num-traits = "0.2.18"