-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 1012 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 1012 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "hashfasta"
version = "1.0.0"
edition = "2021"
authors = ["Samuel Sims"]
description = "Very quickly compute hashes for FASTA/FASTQ files considering **only** the sequence content."
readme = "README.md"
repository = "https://github.com/Sam-Sims/hashfasta"
license = "MIT"
keywords = ["hash", "bioinformatics", "fasta", "fastq", "sequencing"]
categories = ["command-line-utilities", "science"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
color-eyre = "0.6.5"
paraseq = { version = "0.4.8", features = ["url", "ssh"] }
parking_lot = "0.12.5"
hex = "0.4.3"
twox-hash = { version = "2.1.2", features = ["xxhash3_64"] }
serde_json = { version = "1.0.134", features = ["preserve_order"] }
env_logger = "0.11.6"
log = "0.4.22"
serde = { version = "1.0.228", features = ["derive"] }
native-tls = { version = "0.2", features = ["vendored"] }
[dev-dependencies]
tempfile = "3.12.0"