Skip to content

Commit

Permalink
Unpin serde and limit atglib to minor version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
anergictcell committed Dec 24, 2023
1 parent ead10ee commit 0473cec
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 14 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.8.4.
- Unpin `serde`, the issue from 0.8.3 has been fixed
- Update other dependencies, fix security issue in dependencies

## 0.8.3.
- Pin serde version (See https://github.com/serde-rs/serde/issues/2538 for context)

Expand Down
34 changes: 22 additions & 12 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ keywords = ["bioinformatics", "genomics", "transcriptomics", "transcript", "gene
categories = ["science", "data-structures", "command-line-utilities"]

[dependencies]
atglib = "0.2.1"
atglib = "0.2"
clap = {version = "4.0.0", features = ["derive"]}
log = "0.4"
loggerv = "0.7"
bincode = "1.3.3"
# See https://github.com/serde-rs/serde/issues/2538#issuecomment-1684517372 for why we pin serde
serde = { version = "1.0.156, < 1.0.172", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
s3reader = "1"

[profile.release]
Expand Down

0 comments on commit 0473cec

Please sign in to comment.