Skip to content

Commit

Permalink
Release 0.1 (#46)
Browse files Browse the repository at this point in the history
* Dumped release

Signed-off-by: Francesco Guardiani <francescoguard@gmail.com>

* Excluded github config from package

Signed-off-by: Francesco Guardiani <francescoguard@gmail.com>
  • Loading branch information
slinkydeveloper committed May 20, 2020
1 parent 713dd73 commit bbe3a4c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
[package]
name = "cloudevents-sdk"
version = "0.0.1"
version = "0.1.0"
authors = ["Francesco Guardiani <francescoguard@gmail.com>"]
license-file = "LICENSE"
edition = "2018"
description = "CloudEvents official Rust SDK"
documentation = "https://docs.rs/cloudevents-sdk"
readme = "README.md"
repository = "https://github.com/cloudevents/sdk-rust"
exclude = [
".github/*"
]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# CloudEvents SDK Rust [![Crates badge]][crates.io] [![Docs badge]][docs.rs]

Work in progress SDK for [CloudEvents](https://github.com/cloudevents/spec).
This project implements the [CloudEvents](https://cloudevents.io/) Spec for Rust.

Note: All APIs are considered unstable.
Note: This projecets is WIP under active development, hence all APIs are considered unstable.

## Spec support

Expand All @@ -18,7 +18,7 @@ Note: All APIs are considered unstable.
| NATS Protocol Binding | :x: | :x: |
| Web hook | :x: | :x: |

## Modules
## Crates

* `cloudevents-sdk`: Provides Event data structure, JSON Event format implementation. This module is tested to work with GNU libc, WASM and musl toolchains.
* `cloudevents-sdk-actix-web`: Integration with [Actix Web](https://github.com/actix/actix-web).
Expand Down
2 changes: 1 addition & 1 deletion cloudevents-sdk-actix-web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
cloudevents-sdk = { path = ".." }
cloudevents-sdk = { version = "0.1.0", path = ".." }
actix-web = "2"
actix-rt = "1"
lazy_static = "1.4.0"
Expand Down
2 changes: 1 addition & 1 deletion cloudevents-sdk-reqwest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
cloudevents-sdk = { path = ".." }
cloudevents-sdk = { version = "0.1.0", path = ".." }
lazy_static = "1.4.0"
bytes = "^0.5"
serde_json = "^1.0"
Expand Down

0 comments on commit bbe3a4c

Please sign in to comment.