Skip to content

Commit

Permalink
Update parallel processor library, bump ggcat version to 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Guilucand committed Dec 18, 2024
1 parent 0953406 commit fde509f
Show file tree
Hide file tree
Showing 20 changed files with 61 additions and 78 deletions.
52 changes: 18 additions & 34 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions crates/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Andrea Cracco <guilucand@gmail.com>"]
edition = "2021"
name = "ggcat-api"
version = "0.1.0"
version = "1.1.1"

[lib]
crate-type = ["rlib", "staticlib"]
Expand All @@ -24,10 +24,10 @@ colors = { package = "ggcat_colors", path = "../colors" }
utils = { package = "ggcat_utils", path = "../utils" }

fdlimit = "0.3.0"
parallel-processor = "0.1.18"
parallel-processor = "0.1.19"
rayon = "1.10.0"
dynamic-dispatch = "0.5.4"
parking_lot = "0.12.3"
uuid = { version = "1.9.1", features = ["v4"] }
ggcat-logging = { version = "0.1.0", path = "../logging" }
ggcat-logging = { version = "1.1.1", path = "../logging" }
anyhow = "1.0.89"
2 changes: 1 addition & 1 deletion crates/api/example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ggcat-api = { version = "0.1.0", path = ".." }
ggcat-api = { version = "1.1.1", path = ".." }
itertools = "0.13.0"
6 changes: 3 additions & 3 deletions crates/assembler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ggcat_assembler"
version = "0.1.0"
version = "1.1.1"
edition = "2021"
[dependencies]

Expand All @@ -15,7 +15,7 @@ utils = { package = "ggcat_utils", path = "../utils" }
dynamic-dispatch = "0.5.4"

# Common libraries
parallel-processor = "0.1.18"
parallel-processor = "0.1.19"
streaming-libdeflate-rs = "0.1.5"
nightly-quirks = "0.1.4"

Expand Down Expand Up @@ -52,7 +52,7 @@ serde = "1.0.203"
bincode = "1.3.3"
crossbeam = "0.8.4"
dashmap = "6.0.1"
ggcat-logging = { version = "0.1.0", path = "../logging" }
ggcat-logging = { version = "1.1.1", path = "../logging" }
anyhow = "1.0.89"

[features]
Expand Down
6 changes: 3 additions & 3 deletions crates/assembler_kmers_merge/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ggcat_assembler_kmerge"
version = "0.1.0"
version = "1.1.1"
edition = "2021"
[dependencies]

Expand All @@ -9,7 +9,7 @@ config = { package = "ggcat_config", path = "../config" }
utils = { package = "ggcat_utils", path = "../utils" }

# Common libraries
parallel-processor = "0.1.18"
parallel-processor = "0.1.19"
streaming-libdeflate-rs = "0.1.5"
nightly-quirks = "0.1.4"

Expand All @@ -33,7 +33,7 @@ crossbeam = "0.8.4"
# Profiler
instrumenter = "0.1.3"
parking_lot = "0.12.3"
ggcat-logging = { version = "0.1.0", path = "../logging" }
ggcat-logging = { version = "1.1.1", path = "../logging" }

[dev-dependencies]
fdlimit = "0.3.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/assembler_minimizer_bucketing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "ggcat_assembler_minibuck"
version = "0.1.0"
version = "1.1.1"
edition = "2021"
[dependencies]

# Config
config = { package = "ggcat_config", path = "../config" }

# Common libraries
parallel-processor = "0.1.18"
parallel-processor = "0.1.19"
streaming-libdeflate-rs = "0.1.5"

# Static dispatch
Expand Down
4 changes: 2 additions & 2 deletions crates/capi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "ggcat-cpp-bindings"
version = "0.1.0"
version = "1.1.1"
edition = "2021"

[lib]
crate-type = ["staticlib"]

[dependencies]
cxx = "1.0.124"
ggcat-api = { version = "0.1.0", path = "../api" }
ggcat-api = { version = "1.1.1", path = "../api" }
static_assertions = "1.1.0"

[build-dependencies]
Expand Down
9 changes: 4 additions & 5 deletions crates/cmdline/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Andrea Cracco <guilucand@gmail.com>"]
edition = "2021"
name = "ggcat_cmdline"
version = "0.1.0"
version = "1.1.1"

[[bin]]
name = "ggcat"
Expand Down Expand Up @@ -50,17 +50,16 @@ dynamic-dispatch = "0.5.4"


# Common libraries
parallel-processor = "0.1.18"
parallel-processor = "0.1.19"
io = { package = "ggcat_io", path = "../io" }
colors = { package = "ggcat_colors", path = "../colors" }

assembler = { package = "ggcat_assembler", path = "../assembler" }
instrumenter = "0.1.3"

querier = { package = "ggcat_querier", path = "../querier" }
ggcat-api = { version = "0.1.0", path = "../api" }
logging = "0.1.0"
ggcat-logging = { version = "0.1.0", path = "../logging" }
ggcat-api = { version = "1.1.1", path = "../api" }
ggcat-logging = { version = "1.1.1", path = "../logging" }


[features]
Expand Down
6 changes: 3 additions & 3 deletions crates/colors/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ggcat_colors"
version = "0.1.0"
version = "1.1.1"
edition = "2021"
[dependencies]

Expand All @@ -11,7 +11,7 @@ config = { package = "ggcat_config", path = "../config" }
dynamic-dispatch = "0.5.4"

# Common libraries
parallel-processor = "0.1.18"
parallel-processor = "0.1.19"
streaming-libdeflate-rs = "0.1.5"
nightly-quirks = "0.1.4"

Expand Down Expand Up @@ -39,7 +39,7 @@ serde = "1.0.203"
lz4 = "1.25.0"
bincode = "1.3.3"
itertools = "0.13.0"
ggcat-logging = { version = "0.1.0", path = "../logging" }
ggcat-logging = { version = "1.1.1", path = "../logging" }
anyhow = "1.0.89"

[features]
Expand Down
4 changes: 2 additions & 2 deletions crates/config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "ggcat_config"
version = "0.1.0"
version = "1.1.1"
edition = "2021"
[dependencies]


# Common libraries
parallel-processor = "0.1.18"
parallel-processor = "0.1.19"
parking_lot = "0.12.3"
4 changes: 2 additions & 2 deletions crates/dumper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ config = { package = "ggcat_config", path = "../config" }
utils = { package = "ggcat_utils", path = "../utils" }

# Common libraries
parallel-processor = "0.1.18"
parallel-processor = "0.1.19"
streaming-libdeflate-rs = "0.1.5"
nightly-quirks = "0.1.4"

Expand All @@ -30,7 +30,7 @@ csv = "1.3.0"
parking_lot = "0.12.3"
lz4 = "1.25.0"
flate2 = "1.0.30"
ggcat-logging = { version = "0.1.0", path = "../logging" }
ggcat-logging = { version = "1.1.1", path = "../logging" }
anyhow = "1.0.89"

[features]
Expand Down
Loading

0 comments on commit fde509f

Please sign in to comment.