diff options
| author | Kjetil Orbekk <kj@orbekk.com> | 2022-10-08 10:30:15 -0400 |
|---|---|---|
| committer | Kjetil Orbekk <kj@orbekk.com> | 2022-10-08 10:30:15 -0400 |
| commit | 1cbf881835fc33859a31645f886c5d3787ed48f8 (patch) | |
| tree | eb7a8ac803e33283ea0efffa015c8bd96ca40c29 /server/Cargo.toml | |
| parent | b727db0d64f4250742b0ebaac0149c1224a0d040 (diff) | |
Add access token validation
Diffstat (limited to 'server/Cargo.toml')
| -rw-r--r-- | server/Cargo.toml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/server/Cargo.toml b/server/Cargo.toml index e7824a2..0651fef 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -21,4 +21,8 @@ uuid = { version = "1.1.2", features = ["serde", "fast-rng", "v4"] } tower-cookies = "0.7.0" tower = { version = "0.4.13", features = ["full"] } urlencoding = "2.1.2" -sqlx = { version = "0.6", features = [ "runtime-tokio-native-tls" , "postgres" ] }
\ No newline at end of file +sqlx = { version = "0.6", features = [ "runtime-tokio-native-tls" , "postgres" ] } +anyhow = "1.0.65" +chrono = { version = "0.4.22", features = ["serde"] } +thiserror = "1.0.37" +reqwest = "0.11.12" |
