Skip to content

Commit

Permalink
add license, description, and use crates.io for cookie-factory depend…
Browse files Browse the repository at this point in the history
…ency
  • Loading branch information
Geal committed Mar 17, 2017
1 parent a973aef commit 1d9aa5e
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
20 changes: 20 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Copyright (c) 2017 Geoffroy Couprie

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
4 changes: 3 additions & 1 deletion async/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@
name = "lapin-async"
version = "0.1.0"
authors = ["Geoffroy Couprie <geo.couprie@gmail.com>"]
description = "AMQP client library with a low level API designed for use with mio"
license = "MIT"
build = "build.rs"

[dependencies]
amq-protocol-types = "^0.4.0"
nom = "^2.1"
sasl = "^0.3"
clippy = {version = "*", optional = true}
cookie-factory = { git = "https://github.com/geal/cookie-factory" }
cookie-factory = "^0.1"


[build-dependencies]
Expand Down
4 changes: 3 additions & 1 deletion futures/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
name = "lapin-futures"
version = "0.1.0"
authors = ["Geoffroy Couprie <geo.couprie@gmail.com>"]
description = "AMQP client library with a futures based API"
license = "MIT"

[dependencies]
futures = "0.1"
tokio-core = "^0.1"
nom = "^2.1"
cookie-factory = { git = "https://github.com/geal/cookie-factory" }
cookie-factory = "^0.1"
lapin-async = {path = "../async"}

[dev-dependencies]
Expand Down

0 comments on commit 1d9aa5e

Please sign in to comment.