Skip to content

Commit ad39746

Browse files
author
bors-servo
authored
Auto merge of #222 - servo:serialize-name, r=SimonSapin
Actually expose serialize_name. Whoops, serializer is a private module :) <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/rust-cssparser/222) <!-- Reviewable:end -->
2 parents 47f939c + edd3d91 commit ad39746

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cssparser"
3-
version = "0.23.8"
3+
version = "0.23.9"
44
authors = [ "Simon Sapin <simon.sapin@exyr.org>" ]
55

66
description = "Rust implementation of CSS Syntax Level 3"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ pub use rules_and_declarations::{AtRuleType, QualifiedRuleParser, AtRuleParser};
9191
pub use from_bytes::{stylesheet_encoding, EncodingSupport};
9292
pub use color::{RGBA, Color, parse_color_keyword, AngleOrNumber, NumberOrPercentage, ColorComponentParser};
9393
pub use nth::parse_nth;
94-
pub use serializer::{ToCss, CssStringWriter, serialize_identifier, serialize_string, TokenSerializationType};
94+
pub use serializer::{ToCss, CssStringWriter, serialize_identifier, serialize_name, serialize_string, TokenSerializationType};
9595
pub use parser::{Parser, Delimiter, Delimiters, ParserState, ParserInput};
9696
pub use parser::{ParseError, ParseErrorKind, BasicParseError, BasicParseErrorKind};
9797
pub use unicode_range::UnicodeRange;

0 commit comments

Comments
 (0)