[package]
edition = "2024"
rust-version = "1.94.1"
name = "v_concat"
version = "0.1.2"
authors = ["Juan Velasquez <support@thevelasquez.com>"]
build = false
exclude = [
".*",
"target",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A tiny library for blazing fast concatenation and prints"
documentation = "https://docs.rs/v_concat"
readme = "README.md"
categories = [
"value-formatting",
"development-tools",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/juanchoraf/v_concat"
[lib]
name = "v_concat"
path = "src/lib.rs"
[[example]]
name = "demo"
path = "examples/demo.rs"
[[test]]
name = "concat"
path = "tests/concat.rs"
[[bench]]
name = "strings_concatenation"
path = "benches/strings_concatenation.rs"
harness = false
[dependencies]
[dev-dependencies.criterion]
version = "0.8.2"