Skip to content

Commit

Permalink
fix: cli to use v3 position and support token2022
Browse files Browse the repository at this point in the history
  • Loading branch information
codewithgun committed Dec 24, 2024
1 parent 0b1570c commit 90f1968
Show file tree
Hide file tree
Showing 139 changed files with 4,934 additions and 26,608 deletions.
2,798 changes: 1,812 additions & 986 deletions Cargo.lock

Large diffs are not rendered by default.

17 changes: 11 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,22 @@ members = ["cli", "market_making", "commons", "dlmm_interface"]
resolver = "2"

[workspace.dependencies]
anchor-lang = "0.28.0"
anchor-spl = "0.28.0"
anchor-client = "0.28.0"
anchor-lang = "0.29.0"
anchor-spl = "0.29.0"
anchor-client = "0.29.0"

solana-sdk = "1.16.0"
solana-sdk = "1.17.0"
spl-associated-token-account = "1"
solana-transaction-status = "1.16.0"
solana-transaction-status = "1.17.0"
solana-account-decoder = "1.17.0"
spl-memo = "3.0.0"
spl-transfer-hook-interface = "0.5.0"

serde_json = "1.0.48"
serde = "1.0.104"
bincode = "1.3.3"
bs58 = "0.5.0"
bytemuck = "1.13.1"

clap = "4.3.3"
shellexpand = "3.1.0"
Expand All @@ -30,7 +34,8 @@ num-traits = "0.2.16"
hyper = "0.14.17"
routerify = "3"

tokio = "~1.14.1"
tokio = "^1.0"
async-trait = "0.1.0"

anyhow = "1.0.71"

Expand Down
9 changes: 5 additions & 4 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cli"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
description = "cli"
authors = ["tian <[email protected]>"]
Expand All @@ -21,10 +21,11 @@ spl-associated-token-account = { workspace = true }
rand = { workspace = true }
tokio = { workspace = true, features = ["full", "parking_lot"] }
bincode = { workspace = true }
spl-memo = { workspace = true, features = ["no-entrypoint"] }
spl-transfer-hook-interface = { workspace = true }
solana-account-decoder = { workspace = true }

bigdecimal = "0.4.2"
serde = "1.0.167"
serde_json = "1.0.100"
serde_json_any_key = "2.0.0"

[dev-dependencies]
proptest = "1.2.0"
Loading

0 comments on commit 90f1968

Please sign in to comment.