summaryrefslogtreecommitdiff
path: root/server/Cargo.toml
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@spawned.biz>2025-02-03 23:58:47 +0100
committerJoel Klinghed <the_jk@spawned.biz>2025-02-03 23:58:47 +0100
commitf1663e24c148421692346f7470d77b258d78b585 (patch)
tree2a44cdb4da386fcca6b6be9037dcd9ce0ac88471 /server/Cargo.toml
parent67331b851295b0067f74cd410aef7986aa6a848e (diff)
code coverage: Add tests for common
Add coverage for common as well as server. Fix fs_utils::create_dir_allow_existing to fail if entry exists but isn't a dir.
Diffstat (limited to 'server/Cargo.toml')
-rw-r--r--server/Cargo.toml4
1 files changed, 3 insertions, 1 deletions
diff --git a/server/Cargo.toml b/server/Cargo.toml
index 9288bc2..906c589 100644
--- a/server/Cargo.toml
+++ b/server/Cargo.toml
@@ -5,12 +5,14 @@ edition = "2021"
[workspace]
members = ["hook"]
+default-members = [".", "common", "hook"]
resolver = "2"
[workspace.dependencies]
futures = "0.3.31"
rmp-serde = "1.3"
serde = { version = "1.0", features = ["derive"] }
+testdir = "0.9.3"
tokio = { version = "1" }
[dependencies]
@@ -30,4 +32,4 @@ utoipa-swagger-ui = { version = "9", features = ["rocket", "vendored"], default-
[dev-dependencies]
stdext = "0.3.3"
-testdir = "0.9.3"
+testdir.workspace = true