[package]
name = "simdna"
version = "1.0.2"
edition = "2024"
authors = ["Nicholas D. Crosbie"]
description = "High-performance SIMD-accelerated DNA sequence encoding supporting all IUPAC nucleotide codes"
license = "MIT"
repository = "https://github.com/Rbfinch/simdna"
keywords = ["dna", "simd", "bioinformatics", "encoding", "iupac"]
categories = ["science", "encoding", "algorithms"]
readme = "README.md"
[lib]
name = "simdna"
path = "src/lib.rs"
[[bin]]
name = "simdna"
path = "src/main.rs"
[dependencies]
[dev-dependencies]
criterion = { version = "0.8.1", features = ["html_reports"] }
chrono = "0.4"
[[bench]]
name = "benchmark"
harness = false
path = "benchmark/benchmark.rs"
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
strip = true
[profile.bench]
lto = true
codegen-units = 1
opt-level = 3