gxhash 0.1.3__tar.gz → 0.1.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of gxhash might be problematic. Click here for more details.
- {gxhash-0.1.3/py-gxhash → gxhash-0.1.4}/Cargo.lock +3 -1
- {gxhash-0.1.3/py-gxhash → gxhash-0.1.4}/Cargo.toml +2 -2
- {gxhash-0.1.3 → gxhash-0.1.4}/PKG-INFO +1 -1
- {gxhash-0.1.3 → gxhash-0.1.4}/pyproject.toml +1 -7
- gxhash-0.1.3/.cargo/config.toml +0 -3
- gxhash-0.1.3/.gitattributes +0 -1
- gxhash-0.1.3/.gitignore +0 -25
- gxhash-0.1.3/CITATION.cff +0 -10
- gxhash-0.1.3/Cargo.lock +0 -808
- gxhash-0.1.3/Cargo.toml +0 -69
- gxhash-0.1.3/LICENSE +0 -21
- gxhash-0.1.3/README.md +0 -159
- gxhash-0.1.3/build.rs +0 -3
- gxhash-0.1.3/rustfmt.toml +0 -2
- gxhash-0.1.3/src/gxhash/mod.rs +0 -226
- gxhash-0.1.3/src/gxhash/platform/arm.rs +0 -162
- gxhash-0.1.3/src/gxhash/platform/mod.rs +0 -48
- gxhash-0.1.3/src/gxhash/platform/x86.rs +0 -198
- gxhash-0.1.3/src/hasher.rs +0 -337
- gxhash-0.1.3/src/lib.rs +0 -12
- {gxhash-0.1.3/py-gxhash → gxhash-0.1.4}/README.md +0 -0
- {gxhash-0.1.3/py-gxhash → gxhash-0.1.4}/gxhash.pyi +0 -0
- {gxhash-0.1.3/py-gxhash → gxhash-0.1.4}/src/lib.rs +0 -0
|
@@ -142,6 +142,8 @@ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
|
142
142
|
[[package]]
|
|
143
143
|
name = "gxhash"
|
|
144
144
|
version = "3.5.0"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "f3ce1bab7aa741d4e7042b2aae415b78741f267a98a7271ea226cd5ba6c43d7d"
|
|
145
147
|
dependencies = [
|
|
146
148
|
"rustversion",
|
|
147
149
|
]
|
|
@@ -241,7 +243,7 @@ dependencies = [
|
|
|
241
243
|
|
|
242
244
|
[[package]]
|
|
243
245
|
name = "py-gxhash"
|
|
244
|
-
version = "0.1.
|
|
246
|
+
version = "0.1.4"
|
|
245
247
|
dependencies = [
|
|
246
248
|
"gxhash",
|
|
247
249
|
"libc",
|
|
@@ -5,7 +5,7 @@ panic = "abort"
|
|
|
5
5
|
|
|
6
6
|
[package]
|
|
7
7
|
name = "py-gxhash"
|
|
8
|
-
version = "0.1.
|
|
8
|
+
version = "0.1.4"
|
|
9
9
|
edition = "2021"
|
|
10
10
|
|
|
11
11
|
[lib]
|
|
@@ -16,6 +16,6 @@ crate-type = ["cdylib"]
|
|
|
16
16
|
pyo3 = "0.24.0"
|
|
17
17
|
pyo3-async-runtimes = { version = "0.24.0", features = ["tokio-runtime"] }
|
|
18
18
|
tokio = "1.44.1"
|
|
19
|
-
gxhash = {
|
|
19
|
+
gxhash = { version = "3.5.0", features = ["hybrid"], default-features = false }
|
|
20
20
|
memmap2 = "0.9.5"
|
|
21
21
|
libc = "0.2.171"
|
|
@@ -18,11 +18,5 @@ build-backend = "maturin"
|
|
|
18
18
|
|
|
19
19
|
[tool.maturin]
|
|
20
20
|
features = ["pyo3/extension-module"]
|
|
21
|
-
exclude = [
|
|
22
|
-
"**/.github/**/*",
|
|
23
|
-
"**/benches/**/*",
|
|
24
|
-
"**/examples/**/*",
|
|
25
|
-
"**/uv.lock",
|
|
26
|
-
]
|
|
27
|
-
manifest-path = "py-gxhash/Cargo.toml"
|
|
21
|
+
exclude = ["**/uv.lock"]
|
|
28
22
|
|
gxhash-0.1.3/.cargo/config.toml
DELETED
gxhash-0.1.3/.gitattributes
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
*.tex linguist-detectable=false
|
gxhash-0.1.3/.gitignore
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# Generated by Cargo
|
|
2
|
-
# will have compiled files and executables
|
|
3
|
-
debug/
|
|
4
|
-
target/
|
|
5
|
-
|
|
6
|
-
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
|
|
7
|
-
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
|
|
8
|
-
Cargo.lock
|
|
9
|
-
|
|
10
|
-
# These are backup files generated by rustfmt
|
|
11
|
-
**/*.rs.bk
|
|
12
|
-
|
|
13
|
-
# MSVC Windows builds of rustc generate these, which store debugging information
|
|
14
|
-
*.pdb
|
|
15
|
-
article/*.log
|
|
16
|
-
article/*.out
|
|
17
|
-
article/*.fls
|
|
18
|
-
article/*.toc
|
|
19
|
-
article/*.fdb_latexmk
|
|
20
|
-
article/*.synctex.gz
|
|
21
|
-
article/*.aux
|
|
22
|
-
article/*.blg
|
|
23
|
-
article/*.bbl
|
|
24
|
-
|
|
25
|
-
.idea/**/*
|
gxhash-0.1.3/CITATION.cff
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
cff-version: 1.2.0
|
|
2
|
-
message: "If you use this software, please cite it as below."
|
|
3
|
-
authors:
|
|
4
|
-
- family-names: Giniaux
|
|
5
|
-
given-names: Olivier
|
|
6
|
-
orcid: https://orcid.org/1234-5678-9101-1121
|
|
7
|
-
title: "GxHash: A High-Throughput, Non-Cryptographic Hashing Algorithm Leveraging Modern CPU Capabilities"
|
|
8
|
-
version: 1.0.0
|
|
9
|
-
doi: 10.5281/zenodo.8368254
|
|
10
|
-
date-released:
|