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 --- Cargo.toml | 31 ++++++++----------------------- 1 file changed, 8 insertions(+), 23 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index f281f50..465f125 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,24 +1,9 @@ -[package] -name = "secd" -version = "0.1.0" -edition = "2021" +[workspace] +members = [ + "crates/iam", + "crates/secd", +] -# 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 +[profile.release] +strip = true +lto = true \ No newline at end of file -- cgit v1.2.3