We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 789db77 commit f9ea098Copy full SHA for f9ea098
Cargo.toml
@@ -1,7 +1,7 @@
1
[package]
2
3
name = "cssparser"
4
-version = "0.12.3"
+version = "0.12.4"
5
authors = [ "Simon Sapin <simon.sapin@exyr.org>" ]
6
7
description = "Rust implementation of CSS Syntax Level 3"
src/macros.rs
@@ -82,7 +82,7 @@ macro_rules! ascii_case_insensitive_phf_map {
82
ascii_case_insensitive_phf_map!($name -> $ValueType = { $( $key => $value, )* })
83
};
84
($name: ident -> $ValueType: ty = { $( $key: expr => $value: expr, )* }) => {
85
- fn $name(input: &str) -> Option<&'static $ValueType> {
+ pub fn $name(input: &str) -> Option<&'static $ValueType> {
86
cssparser_internal__invoke_proc_macro! {
87
cssparser_internal__phf_map!( ($ValueType) $( $key ($value) )+ )
88
}
0 commit comments