From 8e03f22c9fa0dd15603fc91a3e0be9a2e35c5493 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Coletta?= Date: Mon, 19 Dec 2022 21:53:18 +0100 Subject: [PATCH] chore: Specify version for workspace packages --- crates/crontab_parser/Cargo.toml | 2 +- crates/crontab_runner/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/crontab_parser/Cargo.toml b/crates/crontab_parser/Cargo.toml index 0dca46e..b869dc6 100644 --- a/crates/crontab_parser/Cargo.toml +++ b/crates/crontab_parser/Cargo.toml @@ -14,7 +14,7 @@ readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -archimedes_crontab_types = { path = "../crontab_types" } +archimedes_crontab_types = { path = "../crontab_types", version = "0.1.0" } json5 = "0.4.1" nom = "7.1.1" serde = { version = "1.0.151", features = ["derive"] } diff --git a/crates/crontab_runner/Cargo.toml b/crates/crontab_runner/Cargo.toml index f27f4e7..ec322b2 100644 --- a/crates/crontab_runner/Cargo.toml +++ b/crates/crontab_runner/Cargo.toml @@ -16,7 +16,7 @@ runtime-tokio-rustls = ["sqlx/runtime-tokio-rustls", "tokio"] runtime-tokio-native-tls = ["sqlx/runtime-tokio-native-tls", "tokio"] [dependencies] -archimedes_crontab_types = { path = "../crontab_types" } +archimedes_crontab_types = { path = "../crontab_types", version = "0.1.0" } chrono = { version = "0.4.23", features = ["serde"] } sqlx = { version = "0.6.2", features = ["chrono"] } thiserror = "1.0.38"