Skip to content

Commit f65d5c5

Browse files
committed
Avoid hardcoding version numbers in crates.
1 parent a9056ba commit f65d5c5

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

alg_cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ readme = "../README.md"
1414
[dependencies]
1515
clap = { version = "4.5.26", features = ["derive"] }
1616
clap_complete = "4.5.42"
17-
cubing = { version = "0.15.1-dev", path = "../cubing" }
17+
cubing = { path = "../cubing" }
1818

1919
[[bin]]
2020
name = "alg"

cubing/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ default = []
1717
simd = ["cubing_core/simd"]
1818

1919
[dependencies]
20-
cubing_core = { version = "0.15.1-dev", path = "../cubing_core" }
21-
cubing_macros = { version = "0.15.1-dev", path = "../cubing_macros" }
20+
cubing_core = { path = "../cubing_core" }
21+
cubing_macros = { path = "../cubing_macros" }
2222

2323
[dev-dependencies]
2424
clap = { version = "4.5.26", features = ["derive"] }

cubing_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ keywords = ["cubing", "puzzle", "rubik", "solving", "WCA"]
1212
readme = "README.md"
1313

1414
[dependencies]
15-
cubing_core = { version = "0.15.1-dev", path = "../cubing_core" }
15+
cubing_core = { path = "../cubing_core" }
1616
quote = "1.0.38"
1717
syn = "2.0.96"
1818

0 commit comments

Comments
 (0)