diff options
| author | benj <benj@rse8.com> | 2022-11-25 16:42:16 -0800 |
|---|---|---|
| committer | benj <benj@rse8.com> | 2022-11-25 16:42:16 -0800 |
| commit | aa8c20d501b58001a5e1b24964c62363e2112ff8 (patch) | |
| tree | 82e53aa5efd6e0a96e8c436655c083de617a6131 /Cargo.toml | |
| parent | fcd972fd9ae7579724b0ba9b401ceb729e6e0108 (diff) | |
| download | secdiam-aa8c20d501b58001a5e1b24964c62363e2112ff8.tar secdiam-aa8c20d501b58001a5e1b24964c62363e2112ff8.tar.gz secdiam-aa8c20d501b58001a5e1b24964c62363e2112ff8.tar.bz2 secdiam-aa8c20d501b58001a5e1b24964c62363e2112ff8.tar.lz secdiam-aa8c20d501b58001a5e1b24964c62363e2112ff8.tar.xz secdiam-aa8c20d501b58001a5e1b24964c62363e2112ff8.tar.zst secdiam-aa8c20d501b58001a5e1b24964c62363e2112ff8.zip | |
some shell is coming together and a rough API
Diffstat (limited to '')
| -rw-r--r-- | Cargo.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..f281f50 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "secd" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +async_once = { version = "0.2.6" } +async-std = { version = "1", features = [ "attributes" ] } +async-trait = { version = "0.1" } +derive_more = { version = "0.99" } +email_address = { version = "0.2" } +env_logger = { version = "0.9" } +lazy_static = { version = "1.4" } +log = { version = "0.4" } +openssl = { version = "0.10.42" } +rand = { version = "0.8" } +serde = { version = "1" } +serde_json = { version = "1.0", features = ["raw_value"] } +sqlx = { version = "0.6", features = [ "runtime-async-std-native-tls", "postgres", "uuid", "sqlite", "time" ] } +time = { version = "0.3", features = [ "serde" ] } +thiserror = { version = "1.0" } +uuid = { version = "1.2", features = ["v4"]}
\ No newline at end of file |
