Skip to content

Commit 00d5251

Browse files
committed
dependency versions for publishing
1 parent 425ec8c commit 00d5251

7 files changed

Lines changed: 11 additions & 11 deletions

File tree

packages/ascii/Scarb.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2023_11"
99
fmt.workspace = true
1010

1111
[dependencies]
12-
alexandria_data_structures = { path = "../data_structures" }
12+
alexandria_data_structures = { path = "../data_structures", version = "0.2.0" }
1313

1414
[dev-dependencies]
1515
cairo_test.workspace = true

packages/bytes/Scarb.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ edition = "2023_11"
99
fmt.workspace = true
1010

1111
[dependencies]
12-
alexandria_math = { path = "../math" }
13-
alexandria_data_structures = { path = "../data_structures" }
12+
alexandria_math = { path = "../math", version = "0.2.0"}
13+
alexandria_data_structures = { path = "../data_structures", version = "0.2.0" }
1414
starknet.workspace = true
1515

1616
[dev-dependencies]

packages/data_structures/Scarb.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2023_11"
99
fmt.workspace = true
1010

1111
[dependencies]
12-
alexandria_encoding = { path = "../encoding" }
12+
alexandria_encoding = { path = "../encoding", version = "0.2.0" }
1313

1414
[dev-dependencies]
1515
cairo_test.workspace = true

packages/encoding/Scarb.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ edition = "2023_11"
99
fmt.workspace = true
1010

1111
[dependencies]
12-
alexandria_math = { path = "../math" }
13-
alexandria_numeric = { path = "../numeric" }
14-
alexandria_bytes = { path = "../bytes" }
12+
alexandria_math = { path = "../math", version = "0.2.0" }
13+
alexandria_numeric = { path = "../numeric", version = "0.2.0" }
14+
alexandria_bytes = { path = "../bytes", version = "0.2.0" }
1515

1616
[dev-dependencies]
1717
cairo_test.workspace = true

packages/numeric/Scarb.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ edition = "2023_11"
99
fmt.workspace = true
1010

1111
[dependencies]
12-
alexandria_math = { path = "../math" }
13-
alexandria_searching = { path = "../searching" }
12+
alexandria_math = { path = "../math", version = "0.2.0" }
13+
alexandria_searching = { path = "../searching", version = "0.2.0" }
1414

1515
[dev-dependencies]
1616
cairo_test.workspace = true

packages/searching/Scarb.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ fmt.workspace = true
1010

1111
[dependencies]
1212
# dependency due to VecTrait usage in dijkstra.cairo
13-
alexandria_data_structures = { path = "../data_structures" }
13+
alexandria_data_structures = { path = "../data_structures", version = "0.2.0" }
1414

1515
[dev-dependencies]
1616
cairo_test.workspace = true

packages/sorting/Scarb.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2023_11"
99
fmt.workspace = true
1010

1111
[dependencies]
12-
alexandria_data_structures = { path = "../data_structures" }
12+
alexandria_data_structures = { path = "../data_structures", version = "0.2.0" }
1313

1414
[dev-dependencies]
1515
cairo_test.workspace = true

0 commit comments

Comments
 (0)