Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
serverlesstechnology authored and Dave Garred committed Apr 15, 2022
1 parent d762a0d commit 9ad2c13
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mysql-es"
version = "0.3.0"
version = "0.3.1"
authors = ["Dave Garred <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand All @@ -11,13 +11,13 @@ documentation = "https://docs.rs/mysql-es"
readme = "README.md"

[dependencies]
cqrs-es = "0.3.0"
cqrs-es = "0.3.1"

async-trait = "0.1.52"
async-trait = "0.1.53"
futures = "0.3.21"
serde = { version = "1.0", features = ["derive"]}
serde_json = "1.0"
sqlx = { version = "0.5.11", features = [ "mysql" , "runtime-tokio-rustls", "json"] }
sqlx = { version = "0.5.12", features = [ "mysql" , "runtime-tokio-rustls", "json"] }

[dev-dependencies]
tokio = { version = "1", features = ["macros", "rt"] }
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# mysql-es

> A MySql implementation of the `EventStore` trait in cqrs-es.
> A MySql implementation of the `PersistedEventRepository` trait in cqrs-es.
---

Expand All @@ -9,8 +9,8 @@ Add to your Cargo.toml file:

```toml
[dependencies]
cqrs-es = "0.3.0"
mysql-es = "0.3.0"
cqrs-es = "0.3.1"
mysql-es = "0.3.1"
```

Requires access to a MySql DB with existing tables. See:
Expand Down

0 comments on commit 9ad2c13

Please sign in to comment.