summaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
Diffstat (limited to 'server')
-rw-r--r--server/Cargo.toml2
-rw-r--r--server/tests/db_test.rs2
2 files changed, 1 insertions, 3 deletions
diff --git a/server/Cargo.toml b/server/Cargo.toml
index 9062058..4db1891 100644
--- a/server/Cargo.toml
+++ b/server/Cargo.toml
@@ -14,7 +14,7 @@ tokio = { version = "1.21.2", features = ["full"] }
tower-http = { version = "0.3.4", features = ["full"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
-protocol = { path = "../protocol" }
+protocol = { path = "../protocol", features = ["db"] }
openidconnect = "2.3.2"
lru = "0.8.1"
uuid = { version = "1.1.2", features = ["serde", "fast-rng", "v4"] }
diff --git a/server/tests/db_test.rs b/server/tests/db_test.rs
index e495d78..f635ad5 100644
--- a/server/tests/db_test.rs
+++ b/server/tests/db_test.rs
@@ -1,6 +1,4 @@
use protocol::card::{Rank, Suit};
-use sqlx::Row;
-use tracing::info;
mod common;