[package]
edition = "2021"
rust-version = "1.80.0"
name = "omics-coordinate"
version = "0.3.0"
authors = ["The Omics project developers"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Foundational representations of coordinates in the Rust omics ecosystem"
homepage = "https://github.com/stjude-rust-labs/omics"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/stjude-rust-labs/omics"
[features]
default = []
position-u64 = []
[lib]
name = "omics_coordinate"
path = "src/lib.rs"
[[bench]]
name = "contigs"
path = "benches/contigs.rs"
harness = false
[[bench]]
name = "coordinates"
path = "benches/coordinates.rs"
harness = false
[[bench]]
name = "intervals"
path = "benches/intervals.rs"
harness = false
[[bench]]
name = "positions"
path = "benches/positions.rs"
harness = false
[dependencies.omics-core]
version = "0.1.0"
[dependencies.thiserror]
version = "2.0.4"
[dev-dependencies.anyhow]
version = "1.0.89"
[dev-dependencies.criterion]
version = "0.5.1"
[lints.clippy]
missing_docs_in_private_items = "warn"
[lints.rust]
missing_docs = "warn"
nonstandard-style = "warn"
rust-2018-idioms = "warn"
rust-2021-compatibility = "warn"
rust-2024-compatibility = "warn"
[lints.rustdoc]
broken_intra_doc_links = "warn"