mirror of
https://github.com/servo/servo.git
synced 2025-08-09 15:35:34 +01:00
Upgrade to bitflags 0.6.0 and selectors 0.5.6
Types generated by `bitflags!` are now private by default. This PR marks them `pub` where necessary.
This commit is contained in:
parent
d3f55fbf60
commit
1e23d90631
29 changed files with 77 additions and 90 deletions
|
@ -11,7 +11,7 @@ path = "lib.rs"
|
|||
|
||||
[dependencies]
|
||||
app_units = {version = "0.2.3", features = ["plugins"]}
|
||||
bitflags = "0.3"
|
||||
bitflags = "0.6.0"
|
||||
euclid = {version = "0.6.4", features = ["plugins"]}
|
||||
fnv = "1.0"
|
||||
harfbuzz-sys = "0.1"
|
||||
|
|
|
@ -105,7 +105,7 @@ pub struct Font {
|
|||
}
|
||||
|
||||
bitflags! {
|
||||
flags ShapingFlags: u8 {
|
||||
pub flags ShapingFlags: u8 {
|
||||
#[doc = "Set if the text is entirely whitespace."]
|
||||
const IS_WHITESPACE_SHAPING_FLAG = 0x01,
|
||||
#[doc = "Set if we are to ignore ligatures."]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue