Skip to content

Commit

Permalink
0.1.6 (#1)
Browse files Browse the repository at this point in the history
* chore: update `Cargo.toml` license

* chore: update README w/ badges & docs

* chore: add build status badge to README

* chore: bump version on README to 0.1.6

* refactor: `Unable to downcast` warn now prints handler name

* update: Cargo version `0.1.6`

Co-authored-by: itsezc <[email protected]>
  • Loading branch information
KennethGomez and itsezc authored Aug 16, 2022
1 parent 39e51c7 commit 45fee8f
Show file tree
Hide file tree
Showing 4 changed files with 90 additions and 71 deletions.
118 changes: 61 additions & 57 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = 'arangodb_events_rs'
version = '0.1.5'
version = '0.1.6'
edition = '2021'
authors = ['Foretag Inc. <[email protected]>']
repository = 'https://github.com/ForetagInc/arangodb-events-rs'
keywords = ['arango', 'arangoDB', 'events', 'trigger', 'database']
categories = ['database']
description = 'Subscribe to real time events on your ArangoDB database in Rust'
license = "MIT/Apache-2.0"
license = 'MPL-2.0'
exclude = ['.gitignore', '.github']

[features]
Expand Down
25 changes: 21 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
A library to add triggers to your ArangoDB database, when events occur (insert, update, delete etc.) on your
collections.

[![crates.io](https://img.shields.io/crates/v/arangodb_events_rs?label=latest&logo=rust)](https://crates.io/crates/arangodb_events_rs)
![Downloads](https://img.shields.io/crates/d/arangodb_events_rs.svg)
![Build](https://img.shields.io/github/workflow/status/ForetagInc/arangodb-events-rs/cargo)
[![Documentation](https://docs.rs/arangodb_events_rs/badge.svg?version=latest)](https://docs.rs/arangodb_events_rs/latest)


## Documentation

- [API Documentation](https://docs.rs/arangodb_events_rs/)

## Features
- `async` Enables asynchronous `Handler::call` method

## Installation

Add the crate to your `Cargo.toml`:
```toml
arangodb_events_rs = "0.1.6"
```

## Usage

```rust
Expand Down Expand Up @@ -58,7 +78,4 @@ async fn main() {
.expect("Error on Trigger listener loop");
}
}
```

## Features
* `async` Enables asynchronous `Handler::call` method
```
Loading

0 comments on commit 45fee8f

Please sign in to comment.