storeit 0.1.0

Ergonomic repository facade over storeit_core with optional SQL builder and backend adapters
Documentation
[dependencies.async-stream]
optional = true
version = "0.3"

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

[dependencies.futures-core]
optional = true
version = "0.3"

[dependencies.storeit_core]
package = "storeit_core"
version = "0.1"

[dependencies.storeit_libsql]
optional = true
package = "storeit_libsql"
version = "0.1"

[dependencies.storeit_macros]
package = "storeit_macros"
version = "0.1"

[dependencies.storeit_sql_builder]
optional = true
package = "storeit_sql_builder"
version = "0.1"

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

[dev-dependencies.chrono]
version = "0.4"

[dev-dependencies.libsql]
version = "0.9.20"

[dev-dependencies.mysql_async]
version = "0.34"

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

[dev-dependencies.tokio-postgres]
version = "0.7"

[[example]]
name = "libsql_e2e"
path = "examples/libsql_e2e.rs"
required-features = ["libsql-backend"]

[[example]]
name = "mysql_e2e"
path = "examples/mysql_e2e.rs"
required-features = ["never-mysql-example"]

[[example]]
name = "postgres_e2e"
path = "examples/postgres_e2e.rs"
required-features = ["never-postgres-example"]

[features]
batch-ext = []
libsql-backend = ["dep:storeit_libsql", "storeit_libsql/libsql-backend"]
mysql-async = []
postgres-backend = []
query-ext = []
sql-builder = ["dep:storeit_sql_builder"]
storeit_libsql = ["libsql-backend"]
storeit_mysql_async = ["mysql-async"]
storeit_tokio_postgres = ["postgres-backend"]
stream-ext = ["dep:async-stream", "dep:futures-core"]
unstable = []
upsert-ext = []

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Ergonomic repository facade over storeit_core with optional SQL builder and backend adapters"
edition = "2021"
license = "MIT OR Apache-2.0"
name = "storeit"
readme = false
repository = "https://github.com/dahankzter/storeit-rs/"
rust-version = "1.70"
version = "0.1.0"

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

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

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

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