Skip to content

Commit 2f01cc8

Browse files
committed
initi project
creating the project for byte_buffer crate
0 parents  commit 2f01cc8

13 files changed

+610
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/target
2+
**/*.rs.bk
3+
Cargo.lock

.idea/byte_buffer.iml

+15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

+302
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[package]
2+
name = "byte_buffer"
3+
version = "0.1.0"
4+
authors = ["Jacob Zuo <[email protected]>"]
5+
edition = "2018"
6+
7+
[dependencies]

LICENSE

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Copyright 2018 MosesLab
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
4+
documentation files (the "Software"), to deal in the Software without restriction, including without limitation
5+
the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and
6+
to permit persons to whom the Software is furnished to do so, subject to the following conditions:
7+
8+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of
9+
the Software.
10+
11+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
12+
THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
13+
OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
14+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[Byte_Buffer][docsrs]
2+
======================
3+
4+
[![Rusty_Express on crates.io][cratesio-image]][cratesio]
5+
[![Rusty_Express on docs.rs][docsrs-image]][docsrs]
6+
7+
[cratesio]: https://crates.io/crates/byte_buffer
8+
[cratesio-image]: https://img.shields.io/crates/v/byte_buffer.svg
9+
[docsrs-image]: https://docs.rs/byte_buffer/badge.svg
10+
[docsrs]: https://docs.rs/byte_buffer
11+
12+
## What is this
13+
This crate create a byte buffer that can be easy to use and provide enhanced performance for
14+
IO-frequent programs.

0 commit comments

Comments
 (0)