[package] name = "smafa" version = "0.8.0" edition = "2021" authors = ["Ben Woodcroft "] license = "GPL-3.0" description = "Read aligner for small pre-aligned sequences" homepage = "https://github.com/wwood/smafa" repository = "https://github.com/wwood/smafa" documentation = "https://github.com/wwood/smafa" readme = "README.md" exclude = [ # Max upload is 10MB, as of writing test data was 15MB "tests/*", ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] serde = { version = "1", features = ["derive"] } postcard = { version = "1", features = ["alloc"] } clap = { version = "4", features = ["cargo"] } log = "0.4.*" env_logger = "0.10" bird_tool_utils = "0.4" # { git = "https://github.com/wwood/bird_tool_utils" } # bird_tool_utils = { path = "../bird_tool_utils" } needletail = "0.5" serde_json = "1.0" [dev-dependencies] tempfile = "3.1" assert_cli = "0.6" cargo-husky = { version="1", default-features = false, features=["precommit-hook", "run-cargo-fmt", "run-cargo-clippy"] } [profile.release] strip = true # Comment out for profiling lto = true # Comment out for profiling # debug = true # For profiling of the code