-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from anergictcell/pin-serde
Pin serde version
- Loading branch information
Showing
2 changed files
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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] | ||
|