dtmrs-store 0.2.0

Storage layer for dtmrs: one set of SQL across sqlite / postgres / mysql via sqlx::Any
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"
rust-version = "1.82"
name = "dtmrs-store"
version = "0.2.0"
authors = ["jackwangfeng"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Storage layer for dtmrs: one set of SQL across sqlite / postgres / mysql via sqlx::Any"
homepage = "https://github.com/jackwangfeng/dtmrs"
readme = "README.md"
keywords = [
    "distributed",
    "transaction",
    "saga",
    "tcc",
    "microservices",
]
categories = [
    "database",
    "asynchronous",
    "network-programming",
]
license = "Apache-2.0"
repository = "https://github.com/jackwangfeng/dtmrs"

[features]
default = []
redis = [
    "dep:redis",
    "dep:serde_json",
]

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

[dependencies.dtmrs-core]
version = "0.2.0"

[dependencies.redis]
version = "1"
features = [
    "tokio-comp",
    "script",
]
optional = true
default-features = false

[dependencies.serde_json]
version = "1"
optional = true

[dependencies.sqlx]
version = "0.8"
features = [
    "runtime-tokio",
    "any",
    "sqlite",
    "postgres",
    "mysql",
    "macros",
]
default-features = false

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

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