Skip to content

Commit 96a7e9e

Browse files
committed
dependencies
1 parent e506b57 commit 96a7e9e

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

bitm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bitm"
3-
version = "0.4.4"
3+
version = "0.5.0"
44
edition = "2021"
55
authors = ["Piotr Beling <[email protected]>"]
66
license = "MIT OR Apache-2.0"

coding_benchmark/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "coding_benchmark"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
authors = ["Piotr Beling <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -20,6 +20,6 @@ butils = { version="0.1", path="../butils" }
2020
dyn_size_of = { version="0.4", path="../dyn_size_of" }
2121
minimum_redundancy = { version="0.3", path="../minimum_redundancy" }
2222
huffman-compress = "0.6.1"
23-
bitm = { version="0.4", path="../bitm" }
23+
bitm = { version=">=0.4, <0.6", path="../bitm" }
2424
bit-vec = "0.6"
2525
constriction = "0.3"

cseq/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cseq"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
authors = ["Piotr Beling <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -13,6 +13,6 @@ categories = [ "data-structures", "algorithms", "compression", "science" ]
1313
keywords = [ "compression", "sequence", "succinct", "elias-fano", "wavelet-matrix" ]
1414

1515
[dependencies]
16-
bitm = { version="0.4", path="../bitm" }
16+
bitm = { version=">=0.4, <0.6", path="../bitm" }
1717
dyn_size_of = { version=">=0.4.3", path="../dyn_size_of" }
1818
binout = { version="0.3", path="../binout" }

cseq_benchmark/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cseq_benchmark"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
authors = ["Piotr Beling <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -17,7 +17,7 @@ butils = { version="0.1", path="../butils" }
1717
clap = { version="4", features = ["derive"] }
1818
dyn_size_of = { version=">=0.4.3", path="../dyn_size_of", features=["aligned-vec"] }
1919
cseq = { version ="0.1", path = "../cseq" }
20-
bitm = { version="0.4", path="../bitm", features=["aligned-vec"] }
20+
bitm = { version=">=0.4, <0.6", path="../bitm", features=["aligned-vec"] }
2121
aligned-vec = "0.6"
2222
vers-vecs = { version="1.1", optional=true }
2323

csf/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "csf"
3-
version = "0.2.0"
3+
version = "0.2.0-alpha.0"
44
authors = ["Piotr Beling <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -13,8 +13,8 @@ categories = [ "data-structures", "algorithms", "compression", "science" ]
1313
keywords = [ "perfect", "hashing", "mphf", "map", "dictionary" ]
1414

1515
[dependencies]
16-
bitm = { version="0.4", path="../bitm" }
17-
ph = { version=">=0.8", path="../ph", features = ["wyhash"] }
16+
bitm = { version=">=0.4, <0.6", path="../bitm" }
17+
ph = { version=">=0.8, <0.10", path="../ph", features = ["wyhash"] }
1818
minimum_redundancy = { version="0.3", path="../minimum_redundancy" }
1919
binout = { version=">=0.2", path="../binout" }
2020
dyn_size_of = { version="0.4", path="../dyn_size_of" }

csf/src/fp/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ pub use map::{Map, MapConf};
88
mod cmap;
99
pub use cmap::{CMap, CMapConf};
1010

11-
mod gomap;
12-
pub use gomap::{GOMap, GOMapConf};
11+
//mod gomap;
12+
//pub use gomap::{GOMap, GOMapConf};
1313

1414
mod gocmap;
1515
pub use gocmap::{GOCMap, GOCMapConf};

csf_benchmark/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ categories = [ "data-structures", "algorithms", "compression", "science" ]
1313
keywords = [ "perfect", "hashing", "mphf", "map", "dictionary" ]
1414

1515
[dependencies]
16-
csf = { version ="0.2", path = "../csf" }
17-
ph = { version=">=0.8", path="../ph", features = ["wyhash"] }
16+
csf = { version ="0.2.0-alpha.0", path = "../csf" }
17+
ph = { version=">=0.8, <0.10", path="../ph", features = ["wyhash"] }
1818
clap = { version="4", features = ["derive"] }
1919
#fsum = { version ="0.1", path = "../fsum" }

mphf_benchmark/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ keywords = [ "perfect", "hashing", "minimal", "mphf" ]
1515
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1616

1717
[dependencies]
18-
bitm = { version="0.4", path="../bitm" }
18+
bitm = { version="0.5", path="../bitm" }
1919
butils = { version="0.1", path="../butils" }
2020
rayon = "1.5"
2121
dyn_size_of = { version="0.4", path="../dyn_size_of" }

ph/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ sux = ["dep:sux", "mem_dbg"]
2323
cacheline-ef = ["dep:cacheline-ef", "mem_dbg"]
2424

2525
[dependencies]
26-
bitm = { version=">=0.4.4", path="../bitm" }
26+
bitm = { version="0.5", path="../bitm" }
2727
dyn_size_of = { version="0.4", path="../dyn_size_of" }
2828
binout = { version=">=0.2", path="../binout" }
2929
rayon = "1.5"

0 commit comments

Comments
 (0)