Release 0.1 (#46)
* Dumped release Signed-off-by: Francesco Guardiani <francescoguard@gmail.com> * Excluded github config from package Signed-off-by: Francesco Guardiani <francescoguard@gmail.com>
This commit is contained in:
parent
713dd73ace
commit
bbe3a4c80c
|
@ -1,12 +1,16 @@
|
||||||
[package]
|
[package]
|
||||||
name = "cloudevents-sdk"
|
name = "cloudevents-sdk"
|
||||||
version = "0.0.1"
|
version = "0.1.0"
|
||||||
authors = ["Francesco Guardiani <francescoguard@gmail.com>"]
|
authors = ["Francesco Guardiani <francescoguard@gmail.com>"]
|
||||||
license-file = "LICENSE"
|
license-file = "LICENSE"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "CloudEvents official Rust SDK"
|
description = "CloudEvents official Rust SDK"
|
||||||
|
documentation = "https://docs.rs/cloudevents-sdk"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/cloudevents/sdk-rust"
|
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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
# CloudEvents SDK Rust [![Crates badge]][crates.io] [![Docs badge]][docs.rs]
|
# 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
|
## Spec support
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ Note: All APIs are considered unstable.
|
||||||
| NATS Protocol Binding | :x: | :x: |
|
| NATS Protocol Binding | :x: | :x: |
|
||||||
| Web hook | :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`: 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).
|
* `cloudevents-sdk-actix-web`: Integration with [Actix Web](https://github.com/actix/actix-web).
|
||||||
|
|
|
@ -7,7 +7,7 @@ edition = "2018"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cloudevents-sdk = { path = ".." }
|
cloudevents-sdk = { version = "0.1.0", path = ".." }
|
||||||
actix-web = "2"
|
actix-web = "2"
|
||||||
actix-rt = "1"
|
actix-rt = "1"
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
|
|
|
@ -7,7 +7,7 @@ edition = "2018"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cloudevents-sdk = { path = ".." }
|
cloudevents-sdk = { version = "0.1.0", path = ".." }
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
bytes = "^0.5"
|
bytes = "^0.5"
|
||||||
serde_json = "^1.0"
|
serde_json = "^1.0"
|
||||||
|
|
Loading…
Reference in New Issue