[package] name = "dialtone_test_util" version = "0.1.0" edition = "2021" publish = true license = "MIT OR Apache-2.0" authors = ["Andrew Newton "] description = "Dialtone Testing Utilities" repository = "https://codeberg.org/rcode3/dialtone" keywords = ["activitypub", "activitystreams", "fediverse", "federation"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] # this project dialtone_axum = { version = "0.1.0", path = "../dialtone_axum" } dialtone_common = { version = "0.1.0", path = "../dialtone_common" } dialtone_reqwest = { version = "0.1.0", path = "../dialtone_reqwest" } dialtone_sqlx = { version = "0.1.0", path = "../dialtone_sqlx" } # axum (web server) axum = { version = "0.5.5", features = ["headers"] } # const_format (compile time constants formatting) const_format = "0.2.21" # sqlx (async db) sqlx = { version = "0.5", features = [ "runtime-tokio-rustls", "postgres", "chrono", "macros", "json", "offline", ] } # testcontainters (docker test containers) testcontainers = "0.12.0" # tokio (async runtime) tokio = { version = "1", features = ["full"] } # tracing (logging) tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] }