-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update cargo docs, update crate to version 0.3.0 for publishing (#20)
* Updates to cargo docs * Skip second README doc test (requires first to have run and execution order isn't guaranteed) * Update to verison 0.3.0 for publishing to Cargo List @Keats, @GSGerritsen, and @boydgreenfield as maintainers. * Update to mmap-bitvec 0.4.1 This fixes an issue introduced by rust-lang/rust#98112 in 1.70+ that otherwise breaks pointer dereferencing `mmap-bitvec`. * Ignore notebook .python-version files
- Loading branch information
1 parent
1604535
commit d131df2
Showing
7 changed files
with
80 additions
and
48 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
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 |
---|---|---|
|
@@ -4,3 +4,4 @@ Cargo.lock | |
.DS_Store | ||
.idea/ | ||
old/ | ||
docs/notebook/.python-version |
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,12 +1,24 @@ | ||
[package] | ||
name = "bfield" | ||
version = "0.2.1" | ||
authors = ["Roderick Bovee <[email protected]>"] | ||
description = "B-field datastructure implementation in Rust" | ||
version = "0.3.0" | ||
authors = ["Vincent Prouillet <[email protected]>", "Gerrit Gerritsen <[email protected]>", "Nick Greenfield <[email protected]>"] | ||
homepage = "https://github.com/onecodex/rust-bfield/" | ||
repository = "https://github.com/onecodex/rust-bfield/" | ||
readme = "README.md" | ||
keywords = ["B-field", "probabilistic data structures"] | ||
categories = ["data-structures"] | ||
edition = "2018" | ||
license = "Apache 2.0" | ||
exclude = [ | ||
".gitignore", | ||
".github/*", | ||
"docs/*", | ||
] | ||
|
||
[dependencies] | ||
bincode = "1" | ||
mmap-bitvec = "0.4.0" | ||
mmap-bitvec = "0.4.1" | ||
murmurhash3 = "0.0.5" | ||
serde = { version = "1.0", features = ["derive"] } | ||
once_cell = "1.3.1" | ||
|
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
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