all dependencies must have a version specified

This commit is contained in:
Quaternions 2024-09-30 10:20:02 -07:00
parent 9a7ebb0f0a
commit c6b4cc29b8
2 changed files with 4 additions and 4 deletions

View File

@ -17,4 +17,4 @@ zeroes=["dep:arrayvec"]
bnum = "0.12.0" bnum = "0.12.0"
arrayvec = { version = "0.7.6", optional = true } arrayvec = { version = "0.7.6", optional = true }
paste = "1.0.15" paste = "1.0.15"
ratio_ops = { path = "../ratio_ops", optional = true } ratio_ops = { version = "0.1.0", path = "../ratio_ops", registry = "strafesnet", optional = true }

View File

@ -14,9 +14,9 @@ fixed-wide=["dep:fixed_wide","dep:paste"]
deferred-division=["dep:ratio_ops"] deferred-division=["dep:ratio_ops"]
[dependencies] [dependencies]
ratio_ops = { path = "../ratio_ops", optional = true } ratio_ops = { version = "0.1.0", path = "../ratio_ops", registry = "strafesnet", optional = true }
fixed_wide = { path = "../fixed_wide", optional = true } fixed_wide = { version = "0.1.0", path = "../fixed_wide", registry = "strafesnet", optional = true }
paste = { version = "1.0.15", optional = true } paste = { version = "1.0.15", optional = true }
[dev-dependencies] [dev-dependencies]
fixed_wide = { path = "../fixed_wide", features = ["wide-mul"] } fixed_wide = { version = "0.1.0", path = "../fixed_wide", registry = "strafesnet", features = ["wide-mul"] }