diff options
| author | benj <benj@rse8.com> | 2022-12-12 17:06:57 -0800 |
|---|---|---|
| committer | benj <benj@rse8.com> | 2022-12-12 17:06:57 -0800 |
| commit | 0920c4d4f30a3345870d385d5c6f3e0919228b56 (patch) | |
| tree | f54668d91db469b7304758893a51b590c8f9b0de /crates/secd/Cargo.toml | |
| parent | 3a4de13528fc85dcbe6bc9055d97ba5cc87f5712 (diff) | |
| download | secdiam-0920c4d4f30a3345870d385d5c6f3e0919228b56.tar secdiam-0920c4d4f30a3345870d385d5c6f3e0919228b56.tar.gz secdiam-0920c4d4f30a3345870d385d5c6f3e0919228b56.tar.bz2 secdiam-0920c4d4f30a3345870d385d5c6f3e0919228b56.tar.lz secdiam-0920c4d4f30a3345870d385d5c6f3e0919228b56.tar.xz secdiam-0920c4d4f30a3345870d385d5c6f3e0919228b56.tar.zst secdiam-0920c4d4f30a3345870d385d5c6f3e0919228b56.zip | |
(oauth2 + email added): a mess that may or may not really work and needs to be refactored...
Diffstat (limited to '')
| -rw-r--r-- | crates/secd/Cargo.toml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/secd/Cargo.toml b/crates/secd/Cargo.toml index 7e80277..d65bf51 100644 --- a/crates/secd/Cargo.toml +++ b/crates/secd/Cargo.toml @@ -6,13 +6,16 @@ edition = "2021" [dependencies] async-std = { version = "1.12.0", features = [ "attributes" ] } async-trait = "0.1" +anyhow = "1.0" base64 = "0.13.1" +clap = { version = "4.0.29", features = ["derive"] } derive_more = "0.99" email_address = "0.2" lazy_static = "1.4" log = "0.4" openssl = "0.10.42" rand = "0.8" +reqwest = { version = "0.11.13", features = ["json"] } serde = "1" serde_json = { version = "1.0", features = ["raw_value"] } strum = "0.24.1" @@ -20,4 +23,5 @@ strum_macros = "0.24" sqlx = { version = "0.6", features = [ "runtime-async-std-native-tls", "postgres", "uuid", "sqlite", "time" ] } time = { version = "0.3", features = [ "serde" ] } thiserror = "1.0" +url = "2.3.1" uuid = { version = "1.2", features = ["v4", "serde"]}
\ No newline at end of file |
