Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge upstream #1

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
### Unreleased

#### Housekeeping

* Update `amq-protocol`

#### Breaking Changes

* **async:**
* Introduce a new `Error` type, replacing occurences of `io::Error` in public APIs ([#145](https://github.com/sozu-proxy/lapin/pull/147))
* **futures:**
* Introduce a new `Error` type, replacing occurences of `io::Error` in public APIs ([#145](https://github.com/sozu-proxy/lapin/pull/145))

### 0.14.1 (2018-11-16)

#### Housekeeping

* Update `env_logger`
* Drop unused `build.rs` from async

#### Bug Fixes

* Fix heartbeat interval
### 0.14.0 (2018-10-17)

#### Housekeeping

* Update amq-protocol dependency
* Reexport `amq_protocol::uri`

### 0.13.0 (2018-07-09)

#### Features
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ lapin-futures is available on [crates.io](https://crates.io/crates/lapin-futures

```toml
[dependencies]
lapin-futures = "^0.13"
lapin-futures = "^0.14"
```

Then include it in your code like this:
Expand All @@ -52,7 +52,7 @@ lapin-async is available on [crates.io](https://crates.io/crates/lapin-async) an

```toml
[dependencies]
lapin-async = "^0.13"
lapin-async = "^0.14"
```

Then include it in your code like this:
Expand Down
13 changes: 4 additions & 9 deletions async/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lapin-async"
version = "0.13.0"
version = "0.15.0"
authors = ["Geoffroy Couprie <[email protected]>", "Marc-Antoine Perennou <[email protected]>"]
description = "AMQP client library with a low level API designed for use with mio"
repository = "https://github.com/sozu-proxy/lapin"
Expand All @@ -9,25 +9,20 @@ documentation = "https://docs.rs/lapin-async"
keywords = ["amqp", "rabbitmq", "mio"]
categories = ["database"]
license = "MIT"
build = "build.rs"

[dependencies]
log = "^0.4"
nom = "^4.0"
cookie-factory = "^0.2.4"
amq-protocol = "^0.21"
amq-protocol = "^1.0"
failure = "^0.1"

[dependencies.sasl]
version= "^0.4"
default-features = false

[build-dependencies]
amq-protocol = "^0.21"

[dev-dependencies]
env_logger = "^0.5"
env_logger = "^0.6"

[features]
default = []


473 changes: 0 additions & 473 deletions async/assets/amqp-rabbitmq-0.9.1.json

This file was deleted.

Binary file removed async/assets/amqp.pcap
Binary file not shown.
27 changes: 0 additions & 27 deletions async/assets/test.js

This file was deleted.

29 changes: 0 additions & 29 deletions async/build.rs

This file was deleted.

Loading