-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Replace mx by scaled * Change kmerminhash_new signature * fix small issues * Change to hash_function * Fix some test issues * update scaled_for_max_hash * Remove extra space * Fix some wasm issues * fix lints * bump rust version
- Loading branch information
Showing
10 changed files
with
149 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,3 +32,6 @@ Cargo.lock | |
pkg/ | ||
wasm-pack.log | ||
.hypothesis | ||
|
||
# IDEs | ||
.vscode/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "sourmash" | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
authors = ["Luiz Irber <[email protected]>"] | ||
description = "MinHash sketches for genomic data" | ||
repository = "https://github.com/dib-lab/sourmash" | ||
|
@@ -24,7 +24,7 @@ parallel = ["rayon"] | |
[dependencies] | ||
backtrace = "=0.3.46" # later versions require rust 1.40 | ||
byteorder = "1.3.4" | ||
cfg-if = "0.1.10" | ||
cfg-if = "1.0" | ||
failure = "0.1.8" # can remove after .backtrace() is available in std::error::Error | ||
finch = { version = "0.3.0", optional = true } | ||
fixedbitset = "0.3.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.