toke/Cargo.toml

21 lines
506 B
TOML
Raw Normal View History

2024-02-25 01:54:40 +00:00
[package]
2024-02-25 13:34:37 +00:00
name = "toke-runner"
2024-02-25 13:30:32 +00:00
description = "A command runner for toml files"
2024-02-25 16:49:15 +00:00
repository = "https://github.com/afonsofrancof/toke"
2024-02-25 13:30:32 +00:00
readme = "README.md"
keywords = ["cli", "toml", "command", "runner", "toke"]
categories = ["command-line-utilities", "development-tools"]
version = "0.1.4"
2024-02-25 01:54:40 +00:00
edition = "2021"
2024-02-25 13:30:32 +00:00
license = "MIT"
2024-02-25 01:54:40 +00:00
2024-02-25 13:34:37 +00:00
[[bin]]
name = "toke"
2024-02-25 01:54:40 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-02-25 01:57:50 +00:00
clap = "4.5.1"
2024-02-25 01:54:40 +00:00
regex = "1.10.3"
toml = "0.8.10"