d4tools 0.3.4

The CLI utils for D4 file format
Documentation
[package]
name = "d4tools"
version = "0.3.4"
authors = ["Hao Hou <haohou302@gmail.com>"]
edition = "2021"
license = "MIT"
description = "The CLI utils for D4 file format"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
seq-task = ["d4/seq-task"]
d4-server = ["warp", "tokio", "serde_derive", "serde", "serde_json"]

[dependencies]
d4 = { version = "0.3.4" }
d4-hts = { version = "0.3.4" }
d4-framefile = { version = "0.3.4", features = ["mapped_io"]}
d4-bigwig = { version = "0.3.4" }
rayon = "1.3.0"
clap = { version = "2.34.0", features = ["yaml"] }
regex = "1.3.1"
log = "0.4.8"
env_logger = "0.9.0"
plotters = { version = "0.2.15", default_features = false, features = ["svg", "area_series"] }

warp = {version = "0.3.1", optional = true}
tokio = {version = "1.11.0", features = ["full"], optional = true}
serde_derive = {version = "1.0.130", optional = true}
serde = {version = "1.0.130", optional = true}
serde_json = {version = "1.0.68", optional = true}

ieee754 = {version = "0.2.6" }

[[bin]]
name = "d4tools"
path = "src/main.rs"

[lib]
name = "d4tools"
path = "src/lib.rs"