mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-10 21:20:20 +08:00
23 lines
721 B
TOML
23 lines
721 B
TOML
[package]
|
|
name = "aether-testkit"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Shared integration test helpers for Aether Rust services"
|
|
|
|
[features]
|
|
default = []
|
|
gateway = ["dep:aether-gateway", "dep:aether-runtime-state"]
|
|
postgres = ["dep:aether-data", "dep:sqlx"]
|
|
|
|
[dependencies]
|
|
aether-loadtools.workspace = true
|
|
aether-data = { workspace = true, optional = true }
|
|
aether-gateway = { workspace = true, features = ["testkit"], optional = true }
|
|
aether-runtime.workspace = true
|
|
aether-runtime-state = { workspace = true, optional = true }
|
|
axum.workspace = true
|
|
sqlx = { workspace = true, features = ["postgres"], optional = true }
|
|
tokio.workspace = true
|