Skip to content

Commit

Permalink
update Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
tafia committed Jan 23, 2017
1 parent f0c477a commit 369b751
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[package]
name = "quick-protobuf"
description = "A pure Rust protobuf (de)serializer. Quick."
version = "0.1.0"
authors = ["Johann Tuffe"]
authors = ["Johann Tuffe [email protected]"]
keywords = ["protobuf", "parser"]
license = "LICENSE-MIT.md"
readme = "README.md"

[dependencies]
error-chain = "0.7.2"
Expand Down
4 changes: 2 additions & 2 deletions src/writer.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
use std::io::Write;
use errors::Result;
use message::Message;
// use message::Message;

use byteorder::WriteBytesExt;
use byteorder::LittleEndian as LE;
// use byteorder::LittleEndian as LE;


/// A struct to write protobuf messages
Expand Down

0 comments on commit 369b751

Please sign in to comment.