From 2c4eb2d311919ad9fb70738199ecf99bf20c9fce Mon Sep 17 00:00:00 2001 From: benj Date: Thu, 1 Dec 2022 10:30:34 -0800 Subject: - basic functionality with psql and sqlite - cli helper tool --- crates/iam/Cargo.toml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 crates/iam/Cargo.toml (limited to 'crates/iam/Cargo.toml') diff --git a/crates/iam/Cargo.toml b/crates/iam/Cargo.toml new file mode 100644 index 0000000..fd9006d --- /dev/null +++ b/crates/iam/Cargo.toml @@ -0,0 +1,21 @@ +[package] +name = "iam" +version = "0.1.0" +edition = "2021" + +[dependencies] +anyhow = "1.0" +async-std = { version = "1.12.0", features = [ "attributes" ] } +clap = { version = "4.0.29", features = ["derive"] } +colored = "2.0.0" +home = "0.5.4" +log = "0.4" +rand = "0.8" +secd = { path = "../secd" } +serde = "1" +serde_json = { version = "1.0", features = ["raw_value"] } +strum = "0.24.1" +strum_macros = "0.24" +toml = "0.5.9" +thiserror = "1.0" +uuid = { version = "1.2", features = ["v4", "serde"]} \ No newline at end of file -- cgit v1.2.3