Skip to content

Commit

Permalink
build: upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
yankun1992 committed Nov 27, 2023
1 parent 171e9d0 commit 8c773ed
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ fastbloomjvm/native/.idea

.pytest_cache
.vscode
.metals
py_tests/.pytest_cache
data

Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
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 <yan_kun_1992@foxmail.com>"]
description = "Some fast bloom filter implemented by Rust for Python and Rust! 10x faster than pybloom!"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ object ProjectInfo {

def author = Seq("Yan Kun <yan_kun@icekredit.com>")

def version = "0.5.7"
def version = "0.5.8"

def buildTool = "mill"

Expand Down
4 changes: 2 additions & 2 deletions fastbloom-rs/Cargo.toml
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 <yan_kun_1992@foxmail.com>"]
description = "Some fast bloom filter implemented by Rust for Python and Rust!"
Expand All @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion fastbloomjvm/native/Cargo.toml
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 <yan_kun_1992@foxmail.com>"]
edition = "2021"

Expand Down

0 comments on commit 8c773ed

Please sign in to comment.