Skip to content

Commit

Permalink
Generate lockfiles for examples (#781)
Browse files Browse the repository at this point in the history
commit-id:aa7fab6c
  • Loading branch information
maciektr authored Oct 17, 2023
1 parent ab62a85 commit 8ff2fc4
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 0 deletions.
22 changes: 22 additions & 0 deletions examples/dependencies/Scarb.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Code generated by scarb DO NOT EDIT.
version = 1

[[package]]
name = "alexandria_data_structures"
version = "0.1.0"
source = "git+https://github.com/keep-starknet-strange/alexandria.git#3356bf0c5c1a089167d7d3c28d543e195325e596"

[[package]]
name = "alexandria_math"
version = "0.2.0"
source = "git+https://github.com/keep-starknet-strange/alexandria.git#3356bf0c5c1a089167d7d3c28d543e195325e596"
dependencies = [
"alexandria_data_structures",
]

[[package]]
name = "dependencies"
version = "0.1.0"
dependencies = [
"alexandria_math",
]
6 changes: 6 additions & 0 deletions examples/hello_world/Scarb.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Code generated by scarb DO NOT EDIT.
version = 1

[[package]]
name = "hello_world"
version = "0.1.0"
6 changes: 6 additions & 0 deletions examples/starknet_hello_world/Scarb.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Code generated by scarb DO NOT EDIT.
version = 1

[[package]]
name = "starknet_hello_world"
version = "0.1.0"
6 changes: 6 additions & 0 deletions examples/starknet_multiple_contracts/Scarb.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Code generated by scarb DO NOT EDIT.
version = 1

[[package]]
name = "starknet_multiple_contracts"
version = "0.1.0"
21 changes: 21 additions & 0 deletions examples/workspaces/Scarb.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Code generated by scarb DO NOT EDIT.
version = 1

[[package]]
name = "addition"
version = "0.1.0"

[[package]]
name = "fibonacci"
version = "0.1.0"
dependencies = [
"addition",
]

[[package]]
name = "workspaces"
version = "0.1.0"
dependencies = [
"addition",
"fibonacci",
]

0 comments on commit 8ff2fc4

Please sign in to comment.