From aa8c20d501b58001a5e1b24964c62363e2112ff8 Mon Sep 17 00:00:00 2001 From: benj Date: Fri, 25 Nov 2022 16:42:16 -0800 Subject: some shell is coming together and a rough API --- Cargo.toml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') 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 -- cgit v1.2.3