[package]
edition = "2021"
rust-version = "1.75"
name = "igv-rs"
version = "0.7.0"
authors = ["igv-rs contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Interactive terminal genome viewer for FASTA / VCF / BAM / GFF / BED / bigWig / BEDPE. Includes a bundled-igv.js browser companion."
homepage = "https://github.com/AI4S-YB/igv-rs"
readme = "README.md"
keywords = [
"genomics",
"bioinformatics",
"tui",
"viewer",
"bam",
]
categories = [
"command-line-utilities",
"science::bioinformatics",
"visualization",
]
license = "MIT"
repository = "https://github.com/AI4S-YB/igv-rs"
[lib]
name = "igv_rs"
path = "src/lib.rs"
[[bin]]
name = "igv-rs"
path = "src/main.rs"
[[test]]
name = "cli_snapshot_args"
path = "tests/cli_snapshot_args.rs"
[[test]]
name = "gene_navigation"
path = "tests/gene_navigation.rs"
[[test]]
name = "link_dispatch"
path = "tests/link_dispatch.rs"
[[test]]
name = "link_widget_snapshot"
path = "tests/link_widget_snapshot.rs"
[[test]]
name = "render_smoke"
path = "tests/render_smoke.rs"
[[test]]
name = "signal_dispatch"
path = "tests/signal_dispatch.rs"
[[test]]
name = "snapshot_batch_bed"
path = "tests/snapshot_batch_bed.rs"
[[test]]
name = "snapshot_batch_genes"
path = "tests/snapshot_batch_genes.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.crossterm]
version = "0.28"
features = ["event-stream"]
[dependencies.directories]
version = "5"
[dependencies.futures]
version = "0.3"
[dependencies.igv-core]
version = "0.7.0"
[dependencies.igv-render]
version = "0.7.0"
[dependencies.igv-serve]
version = "0.7.0"
[dependencies.ratatui]
version = "0.29"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1.40"
features = [
"fs",
"io-util",
"macros",
"rt-multi-thread",
"sync",
"time",
"signal",
]
default-features = false
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-appender]
version = "0.2"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[dependencies.tui-input]
version = "0.10"
[dependencies.webbrowser]
version = "1"
[dev-dependencies.insta]
version = "1.40"
features = ["yaml"]
[dev-dependencies.tempfile]
version = "3"