From c8f8f64d2dc526b49964a265726cb74281630f0a Mon Sep 17 00:00:00 2001 From: Kerdonov Date: Wed, 10 Dec 2025 01:02:58 +0200 Subject: [PATCH] added dependency versions --- cracked_md/Cargo.toml | 2 +- stdsrv/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cracked_md/Cargo.toml b/cracked_md/Cargo.toml index 3e63602..438798e 100644 --- a/cracked_md/Cargo.toml +++ b/cracked_md/Cargo.toml @@ -4,4 +4,4 @@ version = "0.1.0" edition = "2024" [dependencies] -fstools = { path = "../fstools" } +fstools = { version = "0.1.0", path = "../fstools" } diff --git a/stdsrv/Cargo.toml b/stdsrv/Cargo.toml index c969a6d..002f5ad 100644 --- a/stdsrv/Cargo.toml +++ b/stdsrv/Cargo.toml @@ -9,5 +9,5 @@ path = "src/main.rs" # local dependencies [dependencies] -cracked_md = { path = "../cracked_md" } -fstools = { path = "../fstools" } +cracked_md = { version = "0.1.0", path = "../cracked_md" } +fstools = { version = "0.1.0", path = "../fstools" }