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"