summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml9
1 files changed, 7 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 991c1ff..1c6cf9c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,11 +5,16 @@ edition = "2021"
[dependencies]
chrono = { version = "0.4.39", default-features = false, features = ["std", "alloc", "clock", "now", "serde"] }
-hex = { version = "0.4.3", features = ["serde"] }
log = "0.4.22"
regex = "1.11.1"
reqwest = "0.12.9"
-rust-crypto = "0.2.36"
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.133"
+sha1_smol = { version = "1.0.1", features = ["alloc", "std", "serde"] }
tokio = { version = "1.42.0", features = ["fs"] }
+uuid = { version = "1.11.0", features = ["rng", "serde"] }
+
+[workspace]
+members = [
+ "ozone-ui"
+]