[package] name = "bioform" description = "Tools for sniffing, parsing, and manipulating common biological file formats." version = "0.1.0" edition = "2021" authors = ["Will Owens "] license = "Apache-2.0" homepage = "https://github.com/wsowens/bioform" repository = "https://github.com/wsowens/bioform" exclude = ["/test_files/*"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] clap = { version = "4.5.4", features = ["derive"] } env_logger = "0.11.5" gb-io = "0.7.1" log = "0.4" nom = "7.1.3" regex = "1.10.6" rustc-hash = "2.0.0" [dev-dependencies] cool_asserts = "2.0.3" criterion = "0.5.1" [lib] name = "bioform" path = "src/lib.rs" [[bin]] name = "bioform" path = "src/main.rs" [[bench]] name = "parser_bench" harness = false