update readme

This commit is contained in:
Bevan Hunt 2020-01-28 05:14:47 -08:00
parent 39c73f4864
commit 2a3a681633
4 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View File

@ -99,7 +99,7 @@ dependencies = [
[[package]]
name = "broker"
version = "3.1.1"
version = "3.1.2"
dependencies = [
"bcrypt 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
"broker-ntp 0.0.1 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,6 +1,6 @@
[package]
name = "broker"
version = "3.1.1"
version = "3.1.2"
authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
edition = "2018"
license = "MIT"

View File

@ -22,7 +22,7 @@ Broker follows an insert-only/publish/subscribe paradigm rather than a REST CRUD
* Has CORS support
* Provides user authentication with JWTs and Bcrypt(ed) passwords
* Handles future events via Epoch UNIX timestamp
* Uses [Cloudflare's Time Service](https://blog.cloudflare.com/secure-time/) and doesn't rely on your local's server time
* Uses [Cloudflare's Time Service](https://blog.cloudflare.com/secure-time/) and doesn't rely on your local server time
* Stateful immutable event persistence
* Insert event via JSON POST request
* Sync latest events on SSE client connection

View File

@ -1,6 +1,6 @@
name: broker # you probably want to 'snapcraft register <name>'
base: core18 # the base snap is the execution environment for this snap
version: '3.1.1' # just for humans, typically '1.2+git' or '1.3.2'
version: '3.1.2' # just for humans, typically '1.2+git' or '1.3.2'
summary: Real-time Zero-Code API Server # 79 char long summary
description: |
The purpose of this library is to be your real-time zero-code API server.