[[bin]]
name = "braces"
path = "src/cli.rs"
required-features = ["cli"]
[dev-dependencies]
[features]
cli = []
default = []
[lib]
name = "braces"
path = "src/lib.rs"
[package]
authors = ["Louis Maddox <louismmx@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "filesystem"]
description = "Convert path lists into compact brace expansion syntax"
edition = "2021"
keywords = ["braces", "expansion", "glob", "paths", "shell"]
license = "MIT OR Apache-2.0"
name = "braces"
readme = "README.md"
repository = "https://github.com/lmmx/braces"
rust-version = "1.70"
version = "0.2.0"
[package.metadata.binstall]
pkg-fmt = "tgz"
pkg-url = "https://github.com/lmmx/braces/releases/download/braces-v{ version }/braces-v{ version }-{ target }.tar.gz"
[package.metadata.binstall.overrides.aarch64-pc-windows-msvc]
pkg-fmt = "zip"
pkg-url = "https://github.com/lmmx/braces/releases/download/braces-v{ version }/braces-v{ version }-aarch64-pc-windows-msvc.zip"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-fmt = "zip"
pkg-url = "https://github.com/lmmx/braces/releases/download/braces-v{ version }/braces-v{ version }-x86_64-pc-windows-msvc.zip"
[profile.release]
lto = true
strip = true
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "depth"
path = "tests/depth.rs"
[[test]]
name = "error"
path = "tests/error.rs"
[[test]]
name = "helpers"
path = "tests/helpers.rs"
[[test]]
name = "max_size"
path = "tests/max_size.rs"
[[test]]
name = "reprocess"
path = "tests/reprocess.rs"
[[test]]
name = "round_trip"
path = "tests/round_trip.rs"
[[test]]
name = "separators"
path = "tests/separators.rs"
[[test]]
name = "splitting"
path = "tests/splitting.rs"
[[test]]
name = "validation"
path = "tests/validation.rs"