Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion generic_a_star/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "generic_a_star"
description = "A generic implementation of the A* algorithm"
version = "0.19.0"
version = "0.19.1"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions lib_tsalign/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "lib_tsalign"
description = "A sequence-to-sequence aligner that accounts for template switches"
license.workspace = true
authors = ["Sebastian Schmidt <sebastian.schmidt@helsinki.fi>"]
version = "0.19.0"
version = "0.19.1"
edition.workspace = true
rust-version.workspace = true
repository.workspace = true
Expand All @@ -26,8 +26,8 @@ thiserror = "2.0.3"
num-traits.workspace = true
serde = { workspace = true, features = ["derive"], optional = true }
noisy_float = { version = "0.2.0" }
generic_a_star = { version = "0.19.0", path = "../generic_a_star" }
generic_a_star = { version = "0.19.1", path = "../generic_a_star" }
log.workspace = true
rustc-hash = "2.1.1"
seed_chain = { version = "0.19.0", path = "../seed_chain" }
seed_chain = { version = "0.19.1", path = "../seed_chain" }
extend_map = "0.14.3"
4 changes: 2 additions & 2 deletions lib_tsshow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ name = "lib_tsshow"
description = "A visualiser for template-switch alignments"
license.workspace = true
authors = ["Sebastian Schmidt <sebastian.schmidt@helsinki.fi>"]
version = "0.19.0"
version = "0.19.1"
edition.workspace = true
rust-version.workspace = true
repository.workspace = true

[dependencies]
lib_tsalign = { version = "0.19.0", path = "../lib_tsalign" }
lib_tsalign = { version = "0.19.1", path = "../lib_tsalign" }
log.workspace = true
svg = "0.18.0"
resvg = "0.45.0"
Expand Down
6 changes: 3 additions & 3 deletions python_bindings/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = [
"Sebastian Schmidt <sebastian.schmidt@helsinki.fi>",
"Jasper Krauter <jasper.krauter@helsinki.fi>",
]
version = "0.4.0"
version = "0.4.1"
edition.workspace = true
rust-version.workspace = true
repository.workspace = true
Expand All @@ -18,10 +18,10 @@ crate-type = ["cdylib"]

[dependencies]
pyo3 = "0.26"
lib_tsalign = { version = "0.19.0", path = "../lib_tsalign", features = [
lib_tsalign = { version = "0.19.1", path = "../lib_tsalign", features = [
"serde",
] }
lib_tsshow = { version = "0.19.0", path = "../lib_tsshow" }
lib_tsshow = { version = "0.19.1", path = "../lib_tsshow" }
serde.workspace = true
pythonize = "0.26"
pyo3-log = "0.13"
Expand Down
4 changes: 2 additions & 2 deletions seed_chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "seed_chain"
description = "A seeding and generic chaining mechanism for sequence-to-sequence alignment"
license.workspace = true
authors = ["Sebastian Schmidt <sebastian.schmidt@helsinki.fi>"]
version = "0.19.0"
version = "0.19.1"
edition.workspace = true
rust-version.workspace = true
repository.workspace = true
Expand All @@ -12,5 +12,5 @@ repository.workspace = true
[dependencies]
compact-genome.workspace = true
log.workspace = true
generic_a_star = { version = "0.19.0", path = "../generic_a_star" }
generic_a_star = { version = "0.19.1", path = "../generic_a_star" }
num-traits.workspace = true
2 changes: 1 addition & 1 deletion tsalign-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "tsalign-tests"
license.workspace = true
authors = ["Sebastian Schmidt <sebastian.schmidt@helsinki.fi>", "Jasper Krauter <jasper.krauter@helsinki.fi>"]
version = "0.4.0"
version = "0.4.1"
edition.workspace = true
rust-version.workspace = true
repository.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions tsalign/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ name = "tsalign"
description = "A sequence-to-sequence aligner that accounts for template switches"
license.workspace = true
authors = ["Sebastian Schmidt <sebastian.schmidt@helsinki.fi>"]
version = "0.19.0"
version = "0.19.1"
edition.workspace = true
rust-version.workspace = true
repository.workspace = true

[dependencies]
lib_tsalign = { version = "0.19.0", path = "../lib_tsalign", features = [
lib_tsalign = { version = "0.19.1", path = "../lib_tsalign", features = [
"serde",
] }
lib_tsshow = { version = "0.19.0", path = "../lib_tsshow" }
lib_tsshow = { version = "0.19.1", path = "../lib_tsshow" }
clap = { version = "4.5.16", features = ["derive"] }
compact-genome = { workspace = true, features = ["io"] }
traitsequence.workspace = true
Expand Down
Loading