Skip to content

Commit 37bc808

Browse files
author
Edward (Mike's bot)
committed
fix(token-extensions): migrate quasar-svm to git dep
WHAT: Update all 11 token-extensions/*/quasar/Cargo.toml to fetch quasar-svm from the blueshift-gg/quasar-svm git repo, matching every other quasar crate in the repository. WHY: cursor[bot] flagged that token-extensions still pinned quasar-svm = { version = "0.1" } from crates.io while quasar-lang and quasar-spl had been migrated to git deps. Mixing crates.io and git sources for a coordinated trio risks version conflicts and test runtime mismatches. Verified by building + testing basics, cpi-guard, and transfer-fee crates locally - all pass. Addresses cursor[bot] comment #6 on PR #8 (discussion_r3157138724).
1 parent 7ca968e commit 37bc808

11 files changed

Lines changed: 11 additions & 11 deletions

File tree

tokens/token-extensions/basics/quasar/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ quasar-spl = { git = "https://github.com/blueshift-gg/quasar", branch = "master"
2626
solana-instruction = { version = "3.2.0" }
2727

2828
[dev-dependencies]
29-
quasar-svm = { version = "0.1" }
29+
quasar-svm = { git = "https://github.com/blueshift-gg/quasar-svm" }
3030
spl-token-interface = { version = "2.0.0" }
3131
solana-program-pack = { version = "3.1.0" }

tokens/token-extensions/cpi-guard/quasar/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ quasar-spl = { git = "https://github.com/blueshift-gg/quasar", branch = "master"
2525
solana-instruction = { version = "3.2.0" }
2626

2727
[dev-dependencies]
28-
quasar-svm = { version = "0.1" }
28+
quasar-svm = { git = "https://github.com/blueshift-gg/quasar-svm" }
2929
spl-token-interface = { version = "2.0.0" }
3030
solana-program-pack = { version = "3.1.0" }

tokens/token-extensions/default-account-state/quasar/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ quasar-spl = { git = "https://github.com/blueshift-gg/quasar", branch = "master"
2525
solana-instruction = { version = "3.2.0" }
2626

2727
[dev-dependencies]
28-
quasar-svm = { version = "0.1" }
28+
quasar-svm = { git = "https://github.com/blueshift-gg/quasar-svm" }
2929
spl-token-interface = { version = "2.0.0" }
3030
solana-program-pack = { version = "3.1.0" }

tokens/token-extensions/group/quasar/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ quasar-spl = { git = "https://github.com/blueshift-gg/quasar", branch = "master"
2525
solana-instruction = { version = "3.2.0" }
2626

2727
[dev-dependencies]
28-
quasar-svm = { version = "0.1" }
28+
quasar-svm = { git = "https://github.com/blueshift-gg/quasar-svm" }
2929
spl-token-interface = { version = "2.0.0" }
3030
solana-program-pack = { version = "3.1.0" }

tokens/token-extensions/immutable-owner/quasar/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ quasar-spl = { git = "https://github.com/blueshift-gg/quasar", branch = "master"
2525
solana-instruction = { version = "3.2.0" }
2626

2727
[dev-dependencies]
28-
quasar-svm = { version = "0.1" }
28+
quasar-svm = { git = "https://github.com/blueshift-gg/quasar-svm" }
2929
spl-token-interface = { version = "2.0.0" }
3030
solana-program-pack = { version = "3.1.0" }

tokens/token-extensions/interest-bearing/quasar/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ quasar-spl = { git = "https://github.com/blueshift-gg/quasar", branch = "master"
2525
solana-instruction = { version = "3.2.0" }
2626

2727
[dev-dependencies]
28-
quasar-svm = { version = "0.1" }
28+
quasar-svm = { git = "https://github.com/blueshift-gg/quasar-svm" }
2929
spl-token-interface = { version = "2.0.0" }
3030
solana-program-pack = { version = "3.1.0" }

tokens/token-extensions/memo-transfer/quasar/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ quasar-spl = { git = "https://github.com/blueshift-gg/quasar", branch = "master"
2525
solana-instruction = { version = "3.2.0" }
2626

2727
[dev-dependencies]
28-
quasar-svm = { version = "0.1" }
28+
quasar-svm = { git = "https://github.com/blueshift-gg/quasar-svm" }
2929
spl-token-interface = { version = "2.0.0" }
3030
solana-program-pack = { version = "3.1.0" }

tokens/token-extensions/mint-close-authority/quasar/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ quasar-spl = { git = "https://github.com/blueshift-gg/quasar", branch = "master"
2525
solana-instruction = { version = "3.2.0" }
2626

2727
[dev-dependencies]
28-
quasar-svm = { version = "0.1" }
28+
quasar-svm = { git = "https://github.com/blueshift-gg/quasar-svm" }
2929
spl-token-interface = { version = "2.0.0" }
3030
solana-program-pack = { version = "3.1.0" }

tokens/token-extensions/non-transferable/quasar/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ quasar-spl = { git = "https://github.com/blueshift-gg/quasar", branch = "master"
2525
solana-instruction = { version = "3.2.0" }
2626

2727
[dev-dependencies]
28-
quasar-svm = { version = "0.1" }
28+
quasar-svm = { git = "https://github.com/blueshift-gg/quasar-svm" }
2929
spl-token-interface = { version = "2.0.0" }
3030
solana-program-pack = { version = "3.1.0" }

tokens/token-extensions/permanent-delegate/quasar/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ quasar-spl = { git = "https://github.com/blueshift-gg/quasar", branch = "master"
2525
solana-instruction = { version = "3.2.0" }
2626

2727
[dev-dependencies]
28-
quasar-svm = { version = "0.1" }
28+
quasar-svm = { git = "https://github.com/blueshift-gg/quasar-svm" }
2929
spl-token-interface = { version = "2.0.0" }
3030
solana-program-pack = { version = "3.1.0" }

0 commit comments

Comments
 (0)