evento-sql 2.0.0-alpha.12

SQL database implementations for evento event sourcing library.
Documentation
[dependencies.anyhow]
version = "1.0"

[dependencies.async-trait]
version = "0.1"

[dependencies.bitcode]
version = "0.6"

[dependencies.evento-core]
version = "2.0.0-alpha.12"

[dependencies.sea-query]
default-features = false
features = ["derive", "audit"]
version = "1.0.0-rc.29"

[dependencies.sea-query-sqlx]
features = ["runtime-tokio"]
version = "0.8.0-rc.11"

[dependencies.sqlx]
version = "0.8"

[dependencies.ulid]
features = ["serde"]
version = "1.2"

[dev-dependencies.sqlx_migrator]
version = "0.18"

[dev-dependencies.tokio]
features = ["full"]
version = "1.49"

[features]
default = ["sqlite", "mysql", "postgres"]
mysql = ["evento-core/rw", "evento-core/mysql", "sea-query/backend-mysql", "sea-query-sqlx/sqlx-mysql", "sqlx/mysql"]
postgres = ["evento-core/rw", "evento-core/postgres", "sea-query/backend-postgres", "sea-query-sqlx/sqlx-postgres", "sqlx/postgres"]
sqlite = ["evento-core/rw", "evento-core/sqlite", "sea-query/backend-sqlite", "sea-query-sqlx/sqlx-sqlite", "sqlx/sqlite"]

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "SQL database implementations for evento event sourcing library."
documentation = "https://docs.rs/evento-sql"
edition = "2021"
license = "Apache-2.0"
name = "evento-sql"
publish = true
readme = "README.md"
repository = "https://github.com/timayz/evento"
version = "2.0.0-alpha.12"

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

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

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

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