Skip to content

Commit

Permalink
Use byteorder = "1" and bytes = "0.5".
Browse files Browse the repository at this point in the history
  • Loading branch information
Rouven Spreckels committed Feb 12, 2020
1 parent 20552b3 commit 004a029
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 23 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "in-situ"
version = "0.3.0"
version = "0.4.0"
authors = ["Rouven Spreckels <[email protected]>"]
description = "In Situ Endian-independent Bytes Access"
documentation = "https://docs.rs/in-situ"
Expand Down Expand Up @@ -32,4 +32,4 @@ travis-ci = { repository = "qu1x/in-situ" }

[dependencies]
byteorder = "1"
bytes = "0.4"
bytes = "0.5"
15 changes: 3 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

**In Situ Endian-independent Bytes Access**

**Requires stable Rust 1.26**

[![Build Status][]](https://travis-ci.org/qu1x/in-situ)
[![Downloads][]](https://crates.io/crates/in-situ)
[![Version][]](https://crates.io/crates/in-situ)
Expand All @@ -25,23 +23,16 @@
## Usage

This crate is [on crates.io](https://crates.io/crates/in-situ) and can be
used by adding `in-situ` to the dependencies in your project's
`Cargo.toml`:
used by adding `in-situ` to the dependencies in your project's `Cargo.toml`:

```toml
[dependencies]
in-situ = "0.3"
```

and this to your crate root:

```rust
extern crate in_situ;
in-situ = "0.4"
```

## License

Copyright (c) 2018 Rouven Spreckels <[email protected]>
Copyright (c) 2018-2020 Rouven Spreckels <[email protected]>

Usage of the works is permitted provided that
this instrument is retained with the works, so that
Expand Down
4 changes: 4 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 0.4.0 (2020-02-12)

* Use `byteorder = "1"` and `bytes = "0.5"`.

# Version 0.3.0 (2018-05-13)

* Add stable `i128_type` support and remove its feature requiring Rust 1.26.
Expand Down
11 changes: 2 additions & 9 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,11 @@
//! # Usage
//!
//! This crate is [on crates.io](https://crates.io/crates/in-situ) and can be
//! used by adding `in-situ` to the dependencies in your project's
//! `Cargo.toml`:
//! used by adding `in-situ` to the dependencies in your project's `Cargo.toml`:
//!
//! ```toml
//! [dependencies]
//! in-situ = "0.3"
//! ```
//!
//! and this to your crate root:
//!
//! ```
//! extern crate in_situ;
//! in-situ = "0.4"
//! ```

#![deny(missing_docs)]
Expand Down

0 comments on commit 004a029

Please sign in to comment.