Skip to content

Commit

Permalink
📌 Fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielePicco committed Apr 6, 2024
1 parent a747380 commit 3a7a350
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 25 deletions.
55 changes: 35 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion programs-ecs/components/grid/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ default = []
idl-build = ["anchor-lang/idl-build"]

[dependencies]
bolt-lang = { path = "/Users/gabrielepicco/Documents/Solana/bolt/crates/bolt-lang" }
bolt-lang = { version = "0.1.4", git = "https://github.com/magicblock-labs/bolt.git" }
anchor-lang = { git = "https://github.com/coral-xyz/anchor.git", rev = "0f60909" }
2 changes: 1 addition & 1 deletion programs-ecs/components/players/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ default = []
idl-build = ["anchor-lang/idl-build"]

[dependencies]
bolt-lang = { path = "/Users/gabrielepicco/Documents/Solana/bolt/crates/bolt-lang" }
bolt-lang = { version = "0.1.4", git = "https://github.com/magicblock-labs/bolt.git" }
anchor-lang = { git = "https://github.com/coral-xyz/anchor.git", rev = "0f60909" }
2 changes: 1 addition & 1 deletion programs-ecs/systems/join-game/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ default = []
idl-build = ["anchor-lang/idl-build"]

[dependencies]
bolt-lang = { path = "/Users/gabrielepicco/Documents/Solana/bolt/crates/bolt-lang" }
bolt-lang = { version = "0.1.4", git = "https://github.com/magicblock-labs/bolt.git" }
anchor-lang = { git = "https://github.com/coral-xyz/anchor.git", rev = "0f60909" }
players = { version = "0.1.1", path = "../../components/players", features = ["cpi"] }
4 changes: 2 additions & 2 deletions programs-ecs/systems/play/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ default = []
idl-build = ["anchor-lang/idl-build"]

[dependencies]
bolt-lang = { path = "/Users/gabrielepicco/Documents/Solana/bolt/crates/bolt-lang" }
anchor-lang = { git = "https://github.com/coral-xyz/anchor.git", rev = "0f60909" }
bolt-lang = { version = "0.1.4", git = "https://github.com/magicblock-labs/bolt.git" }
anchor-lang = { version = "0.29.0", git = "https://github.com/coral-xyz/anchor.git", rev = "0f60909" }
serde = { version = "1.0.130", features = ["derive"] }
players = { version = "0.1.1", path = "../../components/players", features = ["cpi"] }
grid = { version = "0.1.1", path = "../../components/grid", features = ["cpi"] }

0 comments on commit 3a7a350

Please sign in to comment.