minislug 0.1.0

A tiny, dependency-free slugifier that turns any &str/String into a safe cross-platform filename
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.56.0"
name = "minislug"
version = "0.1.0"
authors = ["Alexander Milchinskiy <milchinskiy@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A tiny, dependency-free slugifier that turns any &str/String into a safe cross-platform filename"
readme = "README.md"
keywords = [
    "slug",
    "filename",
    "sanitize",
    "string",
]
categories = [
    "filesystem",
    "text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/milchinskiy/minislug"

[features]
default = ["std"]
std = []
transliterate = []
unicode = []

[lib]
name = "minislug"
path = "src/lib.rs"

[[test]]
name = "slugify"
path = "tests/slugify.rs"

[dependencies]

[lints.clippy]
correctness = "warn"
nursery = "warn"
pedantic = "warn"
perf = "warn"
style = "warn"