parse-css-font 0.1.1

Parse the CSS `font` shorthand into its components (style, variant, weight, stretch, size, line-height, family). Zero dependencies, no_std.
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.81"
name = "parse-css-font"
version = "0.1.1"
authors = ["trananhtung"]
build = false
exclude = [
    "/.github",
    "/.gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parse the CSS `font` shorthand into its components (style, variant, weight, stretch, size, line-height, family). Zero dependencies, no_std."
homepage = "https://github.com/trananhtung/parse-css-font"
documentation = "https://docs.rs/parse-css-font"
readme = "README.md"
keywords = [
    "css",
    "font",
    "shorthand",
    "parser",
    "canvas",
]
categories = [
    "parser-implementations",
    "web-programming",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/trananhtung/parse-css-font"

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

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

[dependencies]

[lints.clippy]
all = "warn"
pedantic = "warn"

[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"