Skip to content

Tags: servo/rust-cssparser

Tags

v0.35.0

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump version 0.35.0 (#404)

Signed-off-by: Nico Burns <nico@nicoburns.com>

v0.32.0

v0.32.0

 * Some color APIs have changed. RGBA is now RgbaLegacy.
 * Output of ascii_case_insensitive_phf_map is changed to expose
   entries() too.
 * Named colors are exposed directly.

v0.31.1

v0.31.1

 * Nesting fixes
 * Update to syn 2

v0.31.0

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Auto merge of #335 - nicoburns:encapsulate-unsafe-in-macro, r=SimonSapin

Encapsulate unsafe in `_cssparser_internal_to_lowercase` macro

# Objective

- Allow the `_cssparser_internal_to_lowercase` macro to be used in crates that set `#[forbid(unsafe)]`.
- Document the safety invariant for this unsafe block

## Changes made

- Wrap the `unsafe` block in the `_cssparser_internal_to_lowercase` macro in an `#[inline(always)]` function.
-  Add comments

## Context

- DioxusLabs/taffy#460 (comment)