pleme-testing 0.1.0

Testing utilities library for Pleme platform - test fixtures, testcontainers, integration helpers
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 = "pleme-testing"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Testing utilities library for Pleme platform - test fixtures, testcontainers, integration helpers"
homepage = "https://github.com/pleme-io/pleme-testing"
readme = "README.md"
keywords = [
    "testing",
    "fixtures",
    "testcontainers",
    "integration-tests",
    "rust",
]
categories = ["development-tools::testing"]
license = "MIT"
repository = "https://github.com/pleme-io/pleme-testing"

[features]
containers = ["testcontainers"]
database = [
    "sqlx",
    "redis",
]
default = []
full = [
    "containers",
    "database",
    "http",
    "integration",
]
http = ["reqwest"]
integration = [
    "pleme-database",
    "pleme-error",
]

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

[dependencies.anyhow]
version = "1.0"

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

[dependencies.pleme-database]
version = "0.1"
optional = true

[dependencies.pleme-error]
version = "0.1"
optional = true

[dependencies.redis]
version = "0.24"
optional = true

[dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "rustls-tls-manual-roots-no-provider",
]
optional = true
default-features = false

[dependencies.rstest]
version = "0.18"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.sqlx]
version = "0.8"
features = [
    "postgres",
    "runtime-tokio",
]
optional = true
default-features = false

[dependencies.testcontainers]
version = "0.15"
optional = true

[dependencies.thiserror]
version = "2.0"

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

[dependencies.uuid]
version = "1.6"
features = [
    "serde",
    "v4",
]

[dev-dependencies.tokio-test]
version = "0.4"