Skip to content

Commit bbe3a4c

Browse files
Release 0.1 (cloudevents#46)
* Dumped release Signed-off-by: Francesco Guardiani <[email protected]> * Excluded github config from package Signed-off-by: Francesco Guardiani <[email protected]>
1 parent 713dd73 commit bbe3a4c

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
[package]
22
name = "cloudevents-sdk"
3-
version = "0.0.1"
3+
version = "0.1.0"
44
authors = ["Francesco Guardiani <[email protected]>"]
55
license-file = "LICENSE"
66
edition = "2018"
77
description = "CloudEvents official Rust SDK"
8+
documentation = "https://docs.rs/cloudevents-sdk"
89
readme = "README.md"
910
repository = "https://github.com/cloudevents/sdk-rust"
11+
exclude = [
12+
".github/*"
13+
]
1014

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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# CloudEvents SDK Rust [![Crates badge]][crates.io] [![Docs badge]][docs.rs]
22

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

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

77
## Spec support
88

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

21-
## Modules
21+
## Crates
2222

2323
* `cloudevents-sdk`: Provides Event data structure, JSON Event format implementation. This module is tested to work with GNU libc, WASM and musl toolchains.
2424
* `cloudevents-sdk-actix-web`: Integration with [Actix Web](https://github.com/actix/actix-web).

cloudevents-sdk-actix-web/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2018"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
cloudevents-sdk = { path = ".." }
10+
cloudevents-sdk = { version = "0.1.0", path = ".." }
1111
actix-web = "2"
1212
actix-rt = "1"
1313
lazy_static = "1.4.0"

cloudevents-sdk-reqwest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2018"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
cloudevents-sdk = { path = ".." }
10+
cloudevents-sdk = { version = "0.1.0", path = ".." }
1111
lazy_static = "1.4.0"
1212
bytes = "^0.5"
1313
serde_json = "^1.0"

0 commit comments

Comments
 (0)