Skip to content

Commit

Permalink
added more info to cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
vsbuffalo committed Feb 8, 2024
1 parent 8660e77 commit 8fd09ad
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
14 changes: 12 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@
name = "recmap"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
license = "MIT"
authors = ["Vince Buffalo <[email protected]>"]
keywords = ["genomics", "bioinformatics", "compbio"]
categories = ["science"]
repository = "https://github.com/vsbuffalo/recmap"
description = "A library for reading and working with recombination maps in Rust"

[dependencies]
csv = "1.3.0"
Expand All @@ -18,3 +22,9 @@ thiserror = "1.0.56"
[dev-dependencies]
clap = { version = "4.4.18", features = ["derive"] }
tempfile = "3.10.0"

[profile.release]
opt-level = 3

[profile.dev]
opt-level = 3
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# RecMap Library for reading and working with recombination maps in Rust
# RecMap library for reading and working with recombination maps in Rust

`RecMap` objects can be created from reading in a HapMap-formatted
recombination map. Note that since the HapMap recombination format does
Expand Down

0 comments on commit 8fd09ad

Please sign in to comment.