Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,413 changes: 50 additions & 1,363 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ unexpected_cfgs = { level = "warn", check-cfg = [
codama = "^0.9.2"
serde_json = "^1.0.145"
const-crypto = "^0.3.0"
pinocchio = "^0.10.1"
pinocchio-associated-token-account = "^0.3.0"
pinocchio = "^0.11.1"
pinocchio-associated-token-account = "^0.4.0"
pinocchio-log = "^0.5.1"
pinocchio-system = "^0.5.0"
pinocchio-system = "^0.6.1"
pinocchio-token = "0.6.0"
pinocchio-token-2022 = "^0.2.0"
pinocchio-token-2022 = "^0.3.1"
spl-token-2022 = { version = "^11.0.0", features = ["no-entrypoint"] }
thiserror = "^2.0.17"
solana-security-txt = "^1.1.3"
Expand Down
10 changes: 5 additions & 5 deletions clients/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,23 @@ license = "MIT"
repository = "https://github.com/solana-program/escrow"

[dependencies]
borsh = { workspace = true }
borsh = { workspace = true, features = ["derive"] }
solana-account-info = "3.1.1"
solana-pubkey = "4.2.0"
solana-address = "2.6.0"
solana-address = { version = "2.6.0", features = ["borsh", "copy", "curve25519", "decode"] }
solana-instruction = "3.1.0"
solana-cpi = "3.0.1"
num-derive = { workspace = true }
num-traits = { workspace = true }

solana-client = { version = "3.1.5", optional = true }
solana-account = { version = "~3.2", optional = true }
solana-rpc-client = { version = "3.1.5", optional = true }
solana-account = { version = "~3.4", optional = true }
solana-program-error = "3.0.1"
thiserror = { workspace = true }

[features]
default = []
fetch = ["solana-client", "solana-account"]
fetch = ["solana-rpc-client", "solana-account"]

[package.metadata.cargo-machete]
ignored = ["num-traits"]
53 changes: 28 additions & 25 deletions clients/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,31 @@
{
"name": "@solana/escrow-program-client",
"version": "0.0.1",
"description": "TypeScript client for Escrow Program",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/solana-program/escrow"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
"name": "@solana/escrow-program-client",
"version": "0.0.1",
"description": "TypeScript client for Escrow Program",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/solana-program/escrow"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc"
},
"peerDependencies": {
"@solana/kit": "^6.4.0"
},
"dependencies": {
"@solana/program-client-core": "^6.4.0"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc"
},
"peerDependencies": {
"@solana/kit": "^6.0.0"
}
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
},
"devDependencies": {
"@codama/nodes-from-anchor": "^1.4.1",
"@codama/renderers-js": "^1.7.0",
"@codama/renderers-rust": "^1.2.9",
"@codama/renderers-js": "^2.2.0",
"@codama/renderers-rust": "^3.1.0",
"@eslint/js": "^9.39.4",
"@jest/globals": "^30.4.1",
"@solana-program/system": "^0.12.0",
Expand Down
Loading