Skip to content

Commit f05d9a2

Browse files
committed
Update bitflags to 0.7
1 parent f4262b5 commit f05d9a2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "websocket"
4-
version = "0.17.0"
4+
version = "0.17.1"
55
authors = ["cyderize <admin@cyderize.org>"]
66

77
description = "A WebSocket (RFC6455) library for Rust."
@@ -22,7 +22,7 @@ unicase = "1.0.1"
2222
openssl = "0.7.6"
2323
url = "1.0"
2424
rustc-serialize = "0.3.16"
25-
bitflags = "0.3.3"
25+
bitflags = "0.7"
2626
rand = "0.3.12"
2727
byteorder = "0.5.1"
2828
net2 = "0.2.17"

src/ws/util/header.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use byteorder::{BigEndian, ReadBytesExt, WriteBytesExt};
66

77
bitflags! {
88
/// Flags relevant to a WebSocket data frame.
9-
flags DataFrameFlags: u8 {
9+
pub flags DataFrameFlags: u8 {
1010
/// Marks this dataframe as the last dataframe
1111
const FIN = 0x80,
1212
/// First reserved bit

0 commit comments

Comments
 (0)