Skip to content

Commit

Permalink
fix: losening dependencies (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe authored May 23, 2023
1 parent c5c7779 commit bf22efd
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ name = "annonars"
path = "src/main.rs"

[dependencies]
boolvec = "0.2.6"
byteorder = "1.4.3"
boolvec = "0.2"
byteorder = "1.4"
log = { version = "0.4"}
rocksdb = { version = "0.21.0", features = ["multi-threaded-cf"] }
serde = { version = "1.0.163", features = ["derive"] }
serde_json = { version = "1.0.96", features=["preserve_order"] }
rocksdb = { version = "0.21", features = ["multi-threaded-cf"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features=["preserve_order"] }
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = {version = "0.3"}
Expand All @@ -37,16 +37,16 @@ flate2 = { version = "1.0" }
bgzip = { version = "0.3" }
noodles-bed = "0.9.0"
noodles-bgzf = { version = "0.21" }
noodles-core = "0.11.0"
noodles-csi = "0.18.0"
noodles-core = "0.11"
noodles-csi = "0.18"
noodles-tabix = { version = "0.21" }
noodles-vcf = "0.30.0"
noodles-util = { version = "0.11.0", features = ["variant"] }
hgvs = { version = "0.7" }
noodles-vcf = "0.30"
noodles-util = { version = "0.11", features = ["variant"] }
hgvs = { version = "0.8" }
prost = "0.11"
csv = "1.2.1"
env_logger = "0.10.0"
serde_with = "3.0.0"
csv = "1.2"
env_logger = "0.10"
serde_with = "3.0"

[build-dependencies]
prost-build = "0.11"
Expand Down

0 comments on commit bf22efd

Please sign in to comment.