-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (40 loc) · 1 KB
/
Cargo.toml
File metadata and controls
46 lines (40 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
authors = ["Takahiro Sato <harehare1110@gmail.com>"]
categories = ["command-line-utilities", "text-processing"]
description = "A task runner using Markdown"
edition = "2024"
homepage = "https://mqlang.org/"
keywords = ["markdown", "jq", "taskrunner"]
license = "MIT"
name = "mq-task"
readme = "README.md"
repository = "https://github.com/harehare/mq"
version = "0.1.9"
[[bin]]
name = "mq-task"
path = "src/main.rs"
[lib]
name = "mq_task"
path = "src/lib.rs"
[dependencies]
clap = {version = "4.6.1", features = ["derive"]}
colored = "3.1"
crossterm = "0.29"
miette = {version = "7.6.0", features = ["fancy"]}
mq-lang = "0.5.26"
mq-markdown = "0.5.26"
ratatui = "0.30"
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
thiserror = "2.0.18"
toml = "1.1.2"
which = "8.0.2"
[profile.release]
codegen-units = 1
lto = "fat"
opt-level = "z"
panic = "abort"
strip = true
[package.metadata.binstall]
pkg-fmt = "bin"
pkg-url = "{ repo }/releases/download/v{ version }/mq-task-{ target }{ binary-ext }"