cargo-temp 0.2.16

A CLI tool that allow you to create a temporary new rust project using cargo with already installed dependencies
[package]
name = "cargo-temp"
version = "0.2.16"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A CLI tool that allow you to create a temporary new rust project using cargo with already installed dependencies"
repository = "https://github.com/yozhgoor/cargo-temp"
homepage = "https://github.com/yozhgoor/cargo-temp"
documentation = "https://docs.rs/cargo-temp"
readme = "README.md"
keywords = ["cargo", "temporary", "project", "cli", "dependencies"]
categories = ["development-tools::cargo-plugins"]
include = ["src/**/*.rs", "README.md", "LICENSE.Apache-2.0", "LICENSE.MIT"]

[features]
generate = ["cargo-generate"]

[dependencies]
anyhow = "1.0"
cargo-generate = { version = "0.18", optional = true }
clap = { version = "4.2", features = ["derive"] }
env_logger = "0.10"
libc = "0.2"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
tempfile = "3.5"
toml = "0.7"
regex = "1.7"
once_cell = "1.17"

[target.'cfg(windows)'.dependencies]
create_process_w = { version = "0.1", package = "CreateProcessW" }
windows-sys = { version = "0.36", features = ["Win32_System_Console", "Win32_Foundation"] }
dirs = "4"

[target.'cfg(unix)'.dependencies]
xdg = "2.4"