sqlite-es 0.5.0

An SQLite implementation of an event repository for cqrs-es.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "sqlite-es"
version = "0.5.0"
authors = [
    "John Bledsoe",
    "Dave Garred <dave.garred@serverlesstechnology.com>",
]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An SQLite implementation of an event repository for cqrs-es."
documentation = "https://docs.rs/sqlite-es"
readme = "README.md"
keywords = [
    "cqrs",
    "event-sourcing",
    "sqlite",
]
license = "Apache-2.0"
repository = "https://github.com/johnbcodes/sqlite-es"

[lib]
name = "sqlite_es"
path = "src/lib.rs"

[[test]]
name = "lib"
path = "tests/lib.rs"

[dependencies.cqrs-es]
version = "0.5"

[dependencies.futures]
version = "0.3"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.sqlx]
version = "0.8"
features = [
    "json",
    "runtime-tokio-rustls",
    "sqlite",
]

[dependencies.tokio]
version = "1"
features = ["rt"]

[dev-dependencies.uuid]
version = "1.5"
features = ["v4"]