Skip to content

Commit

Permalink
Use spl-token v3 in dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
macalinao committed Mar 15, 2022
1 parent c368b77 commit 0476964
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

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

3 changes: 2 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@
};
in {
packages.ci = ci;
devShell = pkgs.mkShell {
devShell = pkgs.stdenvNoCC.mkDerivation {
name = "devshell";
buildInputs = with pkgs; [
ci
rustup
Expand Down
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ lazy_static = "1.4.0"
libfuzzer-sys = "0.4.0"
rand = "0.8.4"
solana-program = "^1.9"
spl-token = { version = "3.3.0", features = ["no-entrypoint"] }
spl-token = { version = "^3", features = ["no-entrypoint"] }
stable-swap = { path = "../stable-swap-program/program", features = [
"fuzz",
"program",
Expand Down
1 change: 0 additions & 1 deletion stable-swap-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,4 @@ arrayref = "0.3.6"
num-derive = "0.3"
num-traits = "0.2"
solana-program = "^1.7"
spl-token = { version = "3.3.0", features = ["no-entrypoint"] }
thiserror = "1.0"
2 changes: 1 addition & 1 deletion stable-swap-program/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ fuzz = ["stable-swap-client/fuzz"]

[dependencies]
solana-program = "^1.6.10"
spl-token = { version = "3.3.0", features = ["no-entrypoint"] }
spl-token = { version = "^3", features = ["no-entrypoint"] }
stable-swap-client = { path = "../../stable-swap-client", version = "^1" }
stable-swap-math = { path = "../../stable-swap-math", version = "^1" }

Expand Down

0 comments on commit 0476964

Please sign in to comment.