aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml24
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