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"] }