Skip to content

Commit

Permalink
Use Cargo's dependency patching feature for bio
Browse files Browse the repository at this point in the history
  • Loading branch information
jch-13 committed Aug 17, 2023
1 parent b2db032 commit d19452e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
11 changes: 9 additions & 2 deletions Cargo.lock

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

5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ clap = { version = "4.0", features = ["cargo", "string"] }
log = "0.4"
simple_logger = "4.0"
bincode = "1.3"
bio = { git = "https://github.com/jch-13/rust-bio.git", branch = "occ_small_k", features = ["runtime-dispatch-simd"] }
bio = { version = "1.3", features = ["runtime-dispatch-simd"] }
assert_approx_eq = "1.1"
smallvec = "1.8"
rand = "0.8"
Expand All @@ -30,6 +30,9 @@ noodles = { version = "0.47", features = ["bam", "bgzf", "core", "cram", "fasta"
time = { version = "0.3", features = ["local-offset"] }
flate2 = "1.0"

[patch.crates-io]
bio = { git = "https://github.com/jch-13/rust-bio.git", branch = "occ_small_k" }

[dev-dependencies]
criterion = "0.5"
tempfile = "3.3"
Expand Down

0 comments on commit d19452e

Please sign in to comment.