Skip to content

Commit

Permalink
Merge pull request #18 from anergictcell/pin-serde
Browse files Browse the repository at this point in the history
Pin serde version
  • Loading branch information
anergictcell authored Aug 20, 2023
2 parents 7f909a7 + 14dbb5d commit f00c4e1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

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

# 0.2
- Add GeneticCode to modify the translation table based on the applied genetic code. This change impacts some public functions of the QC-check module.
- Allow generic `Read + Seek` objects for FastaReader. This enables reading directly from S3 or other remote sources.
Expand Down
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atglib"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
authors = ["Jonas Marcello <[email protected]>"]
description = "A library to handle transcripts for genomics and transcriptomics"
Expand All @@ -12,7 +12,8 @@ keywords = ["bioinformatics", "genomics", "transcriptomics", "transcript", "gene
categories = ["science", "data-structures", "parser-implementations"]

[dependencies]
serde = { version = "1.0", features = ["derive"] }
# 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"] }
log = "0.4"

[features]
Expand Down

0 comments on commit f00c4e1

Please sign in to comment.