[package]
edition = "2021"
rust-version = "1.85"
name = "supabase-testcontainers-modules"
version = "1.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Testcontainers modules for Supabase services used in integration testing."
homepage = "https://github.com/j7nw4r/supabase_testcontainers"
documentation = "https://docs.rs/supabase-testcontainers-modules"
readme = "README.md"
keywords = [
"supabase",
"testcontainers",
"integration-tests",
"containers",
"postgresql",
]
categories = [
"development-tools::testing",
"database",
]
license = "MIT"
repository = "https://github.com/j7nw4r/supabase_testcontainers"
[features]
analytics = ["const"]
auth = ["const"]
const = []
default = []
error = []
functions = ["const"]
graphql = ["const"]
postgres_testcontainer = []
postgrest = ["const"]
realtime = ["const"]
storage = ["const"]
[lib]
name = "supabase_testcontainers_modules"
path = "src/lib.rs"
[[test]]
name = "analytics_integration"
path = "tests/analytics_integration.rs"
required-features = ["analytics"]
[[test]]
name = "auth_integration"
path = "tests/auth_integration.rs"
required-features = ["auth"]
[[test]]
name = "functions_integration"
path = "tests/functions_integration.rs"
required-features = ["functions"]
[[test]]
name = "graphql_integration"
path = "tests/graphql_integration.rs"
required-features = [
"graphql",
"postgrest",
]
[[test]]
name = "postgrest_integration"
path = "tests/postgrest_integration.rs"
required-features = ["postgrest"]
[[test]]
name = "realtime_integration"
path = "tests/realtime_integration.rs"
required-features = ["realtime"]
[[test]]
name = "storage_integration"
path = "tests/storage_integration.rs"
required-features = ["storage"]
[dependencies.anyhow]
version = "1.0.102"
[dependencies.testcontainers]
version = "0.27.3"
features = ["default"]
[dependencies.testcontainers-modules]
version = "0.15.0"
features = ["postgres"]
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.52.1"
[dependencies.tokio-postgres]
version = "0.7.17"
[dev-dependencies.reqwest]
version = "0.13.3"
features = ["json"]
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.testcontainers]
version = "0.27.3"
features = ["default"]
[dev-dependencies.tokio]
version = "1.52.1"
features = [
"full",
"test-util",
]