docker/ci: Separate integration and unit tests and benches jobs. Add directives to remove db before/after integration tests are performed. Split start/run/stop phases; add more granular smoketests. Split main integration tests into units for isolation. Signed-off-by: Jason Volk <jason@zemos.net>
26 lines
465 B
TOML
26 lines
465 B
TOML
[package]
|
|
name = "tuwunel_macros"
|
|
categories.workspace = true
|
|
description.workspace = true
|
|
edition.workspace = true
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
readme.workspace = true
|
|
repository.workspace = true
|
|
version.workspace = true
|
|
|
|
[lib]
|
|
name = "tuwunel_macros"
|
|
path = "mod.rs"
|
|
proc-macro = true
|
|
bench = false
|
|
|
|
[dependencies]
|
|
syn.workspace = true
|
|
quote.workspace = true
|
|
proc-macro2.workspace = true
|
|
itertools.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|