From c6b4cc29b8ae406ded6f5ddfc3ebc22f4e0a4e64 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Mon, 30 Sep 2024 10:20:02 -0700 Subject: [PATCH] all dependencies must have a version specified --- fixed_wide/Cargo.toml | 2 +- linear_ops/Cargo.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/fixed_wide/Cargo.toml b/fixed_wide/Cargo.toml index 5dcf9b6..035e42f 100644 --- a/fixed_wide/Cargo.toml +++ b/fixed_wide/Cargo.toml @@ -17,4 +17,4 @@ zeroes=["dep:arrayvec"] bnum = "0.12.0" arrayvec = { version = "0.7.6", optional = true } paste = "1.0.15" -ratio_ops = { path = "../ratio_ops", optional = true } +ratio_ops = { version = "0.1.0", path = "../ratio_ops", registry = "strafesnet", optional = true } diff --git a/linear_ops/Cargo.toml b/linear_ops/Cargo.toml index 1284814..e229c97 100644 --- a/linear_ops/Cargo.toml +++ b/linear_ops/Cargo.toml @@ -14,9 +14,9 @@ fixed-wide=["dep:fixed_wide","dep:paste"] deferred-division=["dep:ratio_ops"] [dependencies] -ratio_ops = { path = "../ratio_ops", optional = true } -fixed_wide = { path = "../fixed_wide", optional = true } +ratio_ops = { version = "0.1.0", path = "../ratio_ops", registry = "strafesnet", optional = true } +fixed_wide = { version = "0.1.0", path = "../fixed_wide", registry = "strafesnet", optional = true } paste = { version = "1.0.15", optional = true } [dev-dependencies] -fixed_wide = { path = "../fixed_wide", features = ["wide-mul"] } +fixed_wide = { version = "0.1.0", path = "../fixed_wide", registry = "strafesnet", features = ["wide-mul"] }