sqlx-repo 0.1.3

repository pattern on top of sqlx
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 = "2024"
name = "sqlx-repo"
version = "0.1.3"
authors = [
    "Dmitriy Mazurin <dimasm19@gmail.com>",
    "Victoria Terenina <torymur@gmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "repository pattern on top of sqlx"
readme = "README.md"
keywords = [
    "sqlx",
    "repository",
]
license = "MIT or Apache-2.0"
repository = "https://github.com/vidicas/sqlx-repo"

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

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

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

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.futures]
version = "0.3"

[dependencies.serde_json]
version = "1"

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

[dependencies.sqlx-repo-macros]
version = "0.2"

[dependencies.url]
version = "2"

[dependencies.uuid]
version = "1"
features = [
    "v7",
    "serde",
]

[dev-dependencies.anyhow]
version = "1.0.98"

[dev-dependencies.tempfile]
version = "3.20.0"

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