mq-run 0.5.28

Command-line interface for mq Markdown processing tool
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "mq-run"
version = "0.5.28"
authors = ["Takahiro Sato <harehare1110@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for mq Markdown processing tool"
homepage = "https://mqlang.org/"
readme = "README.md"
keywords = [
    "markdown",
    "jq",
    "query",
]
categories = [
    "command-line-utilities",
    "text-processing",
]
license = "MIT"
repository = "https://github.com/harehare/mq"

[package.metadata.binstall]
pkg-fmt = "bin"
pkg-url = "{ repo }/releases/download/v{ version }/{ bin }-{ target }{ binary-ext }"
disabled-strategies = ["quick-install"]

[package.metadata.binstall.overrides.mq-dbg]
pkg-url = "{ disabled }"

[package.metadata.deb]
assets = [
    [
    "target/release/mq",
    "usr/bin/",
    "755",
],
    [
    "../../README.md",
    "usr/share/doc/mq/README",
    "644",
],
]
copyright = "2024, Takahiro Sato <harehare1110@gmail.com>"
extended-description = "mq is a jq-like command-line tool for Markdown processing. It allows you to easily slice, filter, map, and transform Markdown files."
license-file = [
    "../../LICENSE",
    "0",
]
maintainer = "Takahiro Sato <harehare1110@gmail.com>"
priority = "optional"
section = "utils"

[[package.metadata.generate-rpm.assets]]
source = "target/release/mq"
dest = "/usr/bin/mq"
mode = "755"

[[package.metadata.generate-rpm.assets]]
source = "../../README.md"
dest = "/usr/share/doc/mq/README"
mode = "644"

[features]
debugger = [
    "mq-lang/debugger",
    "dep:rustyline",
    "dep:strum",
    "dep:regex-lite",
    "mq-dap",
]
default = [
    "std",
    "use_mimalloc",
]
std = []
use_mimalloc = ["mimalloc"]

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

[[bin]]
name = "mq"
path = "src/main.rs"
doc = false
required-features = ["std"]

[[bin]]
name = "mq-dbg"
path = "src/bin/dbg.rs"
doc = false
required-features = ["debugger"]

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[dependencies.clap]
version = "4.6.1"
features = ["derive"]

[dependencies.colored]
version = "3.1.1"

[dependencies.dirs]
version = "6.0.0"

[dependencies.glob]
version = "0.3.3"

[dependencies.miette]
version = "7.6.0"
features = ["fancy"]

[dependencies.mimalloc]
version = "0.1.48"
features = ["v3"]
optional = true

[dependencies.mq-dap]
version = "0.5.28"
optional = true

[dependencies.mq-formatter]
version = "0.5.28"

[dependencies.mq-lang]
version = "0.5.28"
features = ["file-io"]

[dependencies.mq-markdown]
version = "0.5.28"
features = [
    "json",
    "html-to-markdown",
    "color",
]

[dependencies.mq-repl]
version = "0.5.28"

[dependencies.rayon]
version = "1.11.0"

[dependencies.regex-lite]
version = "0.1.9"
optional = true

[dependencies.rustyline]
version = "18.0.0"
features = [
    "custom-bindings",
    "with-file-history",
]
optional = true
default-features = false

[dependencies.strum]
version = "0.28.0"
features = ["derive"]
optional = true

[dependencies.tabled]
version = "0.20.0"
features = [
    "std",
    "ansi",
]
default-features = false

[dependencies.url]
version = "2.5.8"

[dependencies.which]
version = "8.0.2"

[dev-dependencies.assert_cmd]
version = "2.2.1"

[dev-dependencies.rstest]
version = "0.26.1"

[dev-dependencies.scopeguard]
version = "1.2.0"