-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
171e9d0
commit 8c773ed
Showing
5 changed files
with
10 additions
and
9 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 |
---|---|---|
|
@@ -24,6 +24,7 @@ fastbloomjvm/native/.idea | |
|
||
.pytest_cache | ||
.vscode | ||
.metals | ||
py_tests/.pytest_cache | ||
data | ||
|
||
|
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 = "fastbloom_rs" | ||
version = "0.5.7" | ||
version = "0.5.8" | ||
edition = "2021" | ||
authors = ["Yan Kun <[email protected]>"] | ||
description = "Some fast bloom filter implemented by Rust for Python and Rust! 10x faster than pybloom!" | ||
|
@@ -22,14 +22,14 @@ crate-type = ["cdylib"] | |
fastbloom-rs = { path = "fastbloom-rs" } | ||
|
||
[dependencies.pyo3] | ||
version = "0.17" | ||
version = "0.20" | ||
features = ["extension-module", "abi3-py37"] | ||
|
||
[dev-dependencies] | ||
criterion = "0.4.0" | ||
criterion = "0.5" | ||
getrandom = { version = "0.2.7" } | ||
siphasher = "0.3.10" | ||
fastmurmur3 = "0.1.2" | ||
siphasher = "1.0.0" | ||
fastmurmur3 = "0.2.0" | ||
fxhash = "0.2.1" | ||
crc32fast = "1.3.2" | ||
twox-hash = "1.6.3" | ||
|
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ object ProjectInfo { | |
|
||
def author = Seq("Yan Kun <[email protected]>") | ||
|
||
def version = "0.5.7" | ||
def version = "0.5.8" | ||
|
||
def buildTool = "mill" | ||
|
||
|
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 = "fastbloom-rs" | ||
version = "0.5.7" | ||
version = "0.5.8" | ||
edition = "2021" | ||
authors = ["Yan Kun <[email protected]>"] | ||
description = "Some fast bloom filter implemented by Rust for Python and Rust!" | ||
|
@@ -16,7 +16,7 @@ license = "Apache-2.0" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
fastmurmur3 = "0.1.2" | ||
fastmurmur3 = "0.2.0" | ||
cuckoofilter = "0.5.0" | ||
xorfilter-rs = "0.5.1" | ||
xxhash-rust = { version = "0.8", features = ["xxh3", "const_xxh3"] } | ||
|
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 = "fastbloom" # generated by nativeInit with defaultNativeName | ||
version = "0.5.7" | ||
version = "0.5.8" | ||
authors = ["Yan Kun <[email protected]>"] | ||
edition = "2021" | ||
|
||
|