Swap to "bytes" crate
This commit is contained in:
parent
8d73a2e577
commit
a1e8aef5d3
4 changed files with 4 additions and 4 deletions
|
@ -4,5 +4,5 @@ version = "0.1.0"
|
|||
authors = ["Tangent 128 <Tangent128@gmail.com>"]
|
||||
|
||||
[dependencies]
|
||||
byteorder = "1"
|
||||
bytes = "0.4"
|
||||
futures = "^0.1.7"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use byteorder::{BigEndian, ByteOrder};
|
||||
use bytes::{BigEndian, ByteOrder};
|
||||
|
||||
pub const EBML_HEAD_ID: u64 = 0x0A45DFA3;
|
||||
pub const VOID_ID: u64 = 0x6C;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
extern crate byteorder;
|
||||
extern crate bytes;
|
||||
extern crate futures;
|
||||
|
||||
pub mod ebml;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
use byteorder::{BigEndian, ByteOrder};
|
||||
use bytes::{BigEndian, ByteOrder};
|
||||
use ebml::*;
|
||||
|
||||
const SEGMENT_ID: u64 = 0x08538067;
|
||||
|
|
Loading…
Reference in a new issue