Skip to content

Commit

Permalink
Merge pull request #1571 from nbraud + rivy
Browse files Browse the repository at this point in the history
perf/factor ~ deduplicate divisors
  • Loading branch information
rivy committed Oct 26, 2020
2 parents 5837bc4 + 7827716 commit effb94b
Show file tree
Hide file tree
Showing 7 changed files with 233 additions and 168 deletions.
135 changes: 34 additions & 101 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -329,10 +329,12 @@ pin_same-file = { version="1.0.4, < 1.0.6", package="same-file" } ## same-file v
pin_winapi-util = { version="0.1.2, < 0.1.3", package="winapi-util" } ## winapi-util v0.1.3 has compiler errors for MinRustV v1.32.0, expects 1.34

[dev-dependencies]
conv = "0.3"
filetime = "0.2"
libc = "0.2"
rand = "0.6"
rand = "0.7"
regex = "1.0"
sha1 = { version="0.6", features=["std"] }
tempfile = "3.1"
time = "0.1"
unindent = "0.1"
Expand Down
1 change: 1 addition & 0 deletions src/uu/factor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ num-traits = "0.2" # used in src/numerics.rs, which is included by build.rs
[dependencies]
num-traits = "0.2"
rand = { version="0.7", features=["small_rng"] }
smallvec = { version="0.6.13, < 1.0" }
uucore = { version="0.0.4", package="uucore", git="https://github.com/uutils/uucore.git", branch="canary" }
uucore_procs = { version="0.0.4", package="uucore_procs", git="https://github.com/uutils/uucore.git", branch="canary" }

Expand Down
Loading

0 comments on commit effb94b

Please sign in to comment.