runrust 10.34.2

Command-line tool to run Rust "scripts" which can make use of crates.
[package]
name = "runrust"
version = "10.34.2"
edition = "2021"
rust-version = "1.76"
authors = [
  "Muhammad Amin Boubaker <github.com/CodeIter>",
  "Fredrik Fornwall <fredrik@fornwall.net>"
]
description = "Command-line tool to run Rust \"scripts\" which can make use of crates."
homepage = "https://codeiter.github.io/runrust"
documentation = "https://codeiter.github.io/runrust"
repository = "https://github.com/CodeIter/runrust"
readme = "README.md"
license = "MIT/Apache-2.0"
keywords = ["cargo", "script"]
categories = ["command-line-utilities", "development-tools"]

exclude = [
    "_config.yml",
    "CNAME",
    ".github",
    "target"
]

[dependencies]
clap = "4"
dirs = "5"
env_logger = "0.10"
log = "0.4"
pulldown-cmark = "0.9"
regex = "1"
sha1 = "0.10"
shell-words = "1"
tempfile = "3"
toml = "0.7"

[target.'cfg(windows)'.dependencies]
winreg = "0.50"

[target.'cfg(unix)'.dependencies]
is-terminal = "0.4.6"

[dev-dependencies]
lazy_static = "1"
scan-rules = "0.2"

[profile.release]
lto = true

[features]
default=[]
online_tests=[]