summaryrefslogtreecommitdiff
path: root/server/Cargo.toml
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2022-10-07 16:59:29 -0400
committerKjetil Orbekk <kj@orbekk.com>2022-10-07 16:59:29 -0400
commitc64a7a640ac8c59eb6339f0a06d2ad2efab3fd11 (patch)
tree229ccf88da26d5339aadab98013834b6c2af6cbc /server/Cargo.toml
parent01753ebd32e4e0fa8adb11fb02a77720773e3018 (diff)
Start working on authentication
Diffstat (limited to 'server/Cargo.toml')
-rw-r--r--server/Cargo.toml7
1 files changed, 6 insertions, 1 deletions
diff --git a/server/Cargo.toml b/server/Cargo.toml
index 88dee76..f25aa4c 100644
--- a/server/Cargo.toml
+++ b/server/Cargo.toml
@@ -14,4 +14,9 @@ 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"] }
-data = { path = "../data" }
+protocol = { path = "../protocol" }
+openidconnect = "2.3.2"
+lru = "0.8.1"
+uuid = { version = "1.1.2", features = ["serde", "fast-rng", "v4"] }
+tower-cookies = "0.7.0"
+tower = { version = "0.4.13", features = ["full"] }