Skip to content

Commit

Permalink
chore: cleanup for first release (#36) (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe authored Mar 3, 2023
1 parent 9f3e0f3 commit 65f2125
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
14 changes: 11 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
name = "hgvs"
version = "0.1.0"
edition = "2021"
authors = ["Manuel Holtgrewe <[email protected]>"]
description = "Port of biocommons/hgvs to Rust"
license = "Apache-2.0"
homepage = "https://github.com/bihealth/seqrepo-rs"
readme = "README.md"

[lib]
name = "hgvs"
path = "src/lib.rs"

[dependencies]
anyhow = "1.0.69"
Expand All @@ -17,16 +26,15 @@ md-5 = "0.10.5"
nom = "7.1.3"
phf = { version = "0.11.1", features = ["macros"] }
postgres = { version = "0.19.4", features = ["with-chrono-0_4"] }
pretty_assertions = "1.3.0"
quick_cache = "0.2.2"
regex = "1.7.1"
seqrepo = { git = "https://github.com/bihealth/seqrepo-rs.git", branch = "27-whole-fasta-sequences-are-read" }
seqrepo = { version = "0.2.2" }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.93"

[dev-dependencies]
csv = "1.2.0"
env_logger = "0.10.0"
pretty_assertions = "1.3.0"
rstest = "0.16.0"
serde = { version = "1.0.152", features = ["derive"] }
test-log = "0.2.11"
2 changes: 0 additions & 2 deletions src/normalizer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1065,7 +1065,6 @@ mod test {
];

for (input, exp_3) in cases3 {
log::info!("3' test case: ({}, {})", &input, &exp_3);
let raw = HgvsVariant::from_str(input)?;

// 5' -> 3' shuffling
Expand Down Expand Up @@ -1111,7 +1110,6 @@ mod test {
];

for (input, exp_5) in cases5 {
log::info!("5' test case: ({}, {})", &input, &exp_5);
let raw = HgvsVariant::from_str(input)?;

// 3' -> 5' shuffling
Expand Down

0 comments on commit 65f2125

Please sign in to comment.