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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
24 changes: 12 additions & 12 deletions chains/solana/contracts/Cargo.lock

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

6 changes: 2 additions & 4 deletions chains/solana/contracts/programs/base-token-pool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "base-token-pool"
version = "1.6.2"
version = "1.6.3"
description = "Created with Anchor"
edition = "2021"

Expand All @@ -20,9 +20,7 @@ anchor-lang = { version = "0.29.0", features = ["init-if-needed"] }
anchor-spl = "0.29.0"
solana-program = "1.17.25" # pin solana to 1.17
spl-math = { version = "0.2.0", features = ["no-entrypoint"] }
rmn_remote = { version = "1.6.2", path = "../rmn-remote", features = [
"cpi",
] }
rmn_remote = { path = "../rmn-remote", features = [ "cpi" ] }

[lints.rust.unexpected_cfgs]
level = "warn"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "burnmint-token-pool"
version = "1.6.2"
version = "1.6.3"
description = "Created with Anchor"
edition = "2021"

Expand All @@ -20,13 +20,13 @@ anchor-lang = { version = "0.29.0", features = ["init-if-needed"] }
anchor-spl = "0.29.0"
solana-program = "1.17.25" # pin solana to 1.17
spl-math = { version = "0.2.0", features = ["no-entrypoint"] }
base-token-pool = { version = "1.6.2", path = "../base-token-pool/", features = [
base-token-pool = { path = "../base-token-pool/", features = [
"no-entrypoint",
] }
rmn_remote = { version = "1.6.2", path = "../rmn-remote", features = [
rmn_remote = { path = "../rmn-remote", features = [
"cpi",
] }
ccip_common = { version = "1.6.2", path = "../ccip-common" }
ccip_common = { path = "../ccip-common" }

[build-dependencies]
build_commit = { path = "../../crates/build-commit" }
Expand Down
2 changes: 1 addition & 1 deletion chains/solana/contracts/programs/ccip-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ccip_common"
version = "1.6.2"
version = "1.6.3"
edition = "2021"

[lib]
Expand Down
8 changes: 4 additions & 4 deletions chains/solana/contracts/programs/ccip-offramp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ccip_offramp"
version = "1.6.2"
version = "1.6.3"
description = "Created with Anchor"
edition = "2021"

Expand All @@ -21,13 +21,13 @@ anchor-lang = { version = "0.29.0", features = ["init-if-needed"] }
anchor-spl = "0.29.0"
bytemuck = "1.7"
ethnum = "1.5"
fee_quoter = { version = "1.6.2", path = "../fee-quoter", features = [
fee_quoter = { path = "../fee-quoter", features = [
"cpi",
] }
rmn_remote = { version = "1.6.2", path = "../rmn-remote", features = [
rmn_remote = { path = "../rmn-remote", features = [
"cpi",
] }
ccip_common = { version = "1.6.2", path = "../ccip-common" }
ccip_common = { path = "../ccip-common" }

[dev-dependencies]
hex = "0.4.3"
Expand Down
8 changes: 4 additions & 4 deletions chains/solana/contracts/programs/ccip-router/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ccip_router"
version = "1.6.2"
version = "1.6.3"
description = "Created with Anchor"
edition = "2021"
build = "build.rs"
Expand All @@ -22,13 +22,13 @@ anchor-lang = { version = "0.29.0", features = ["init-if-needed"] }
anchor-spl = "0.29.0"
bytemuck = "1.7"
ethnum = "1.5"
fee_quoter = { version = "1.6.2", path = "../fee-quoter", features = [
fee_quoter = { path = "../fee-quoter", features = [
"cpi",
] }
rmn_remote = { version = "1.6.2", path = "../rmn-remote", features = [
rmn_remote = { path = "../rmn-remote", features = [
"cpi",
] }
ccip_common = { version = "1.6.2", path = "../ccip-common" }
ccip_common = { path = "../ccip-common" }

[dev-dependencies]
hex = "0.4.3"
Expand Down
8 changes: 3 additions & 5 deletions chains/solana/contracts/programs/cctp-token-pool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cctp-token-pool"
version = "1.6.2"
version = "1.6.3"
description = "USDC Token Pool for CCIP utilizing CCTP"
edition = "2021"

Expand All @@ -18,10 +18,8 @@ default = []
[dependencies]
anchor-lang = { version = "0.29.0", features = ["init-if-needed"] }
anchor-spl = "0.29.0"
base-token-pool = { version = "1.6.2", path = "../base-token-pool/", features = [
"no-entrypoint",
] }
ccip_common = { version = "1.6.2", path = "../ccip-common" }
base-token-pool = { path = "../base-token-pool/", features = [ "no-entrypoint" ] }
ccip_common = { path = "../ccip-common" }
solana-program = "1.17.25"

[build-dependencies]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "example_ccip_receiver"
version = "1.6.2"
version = "1.6.3"
description = "Created with Anchor"
edition = "2021"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "example_ccip_sender"
version = "1.6.2"
version = "1.6.3"
description = "Created with Anchor"
edition = "2021"

Expand All @@ -19,9 +19,7 @@ default = []
solana-program = "1.17.25" # pin solana to 1.17
anchor-lang = { version = "0.29.0", features = [] }
anchor-spl = "0.29.0"
ccip_router = { version = "1.6.2", path = "../ccip-router", features = [
"no-entrypoint",
] }
ccip_router = { path = "../ccip-router", features = [ "no-entrypoint" ] }

[lints.rust.unexpected_cfgs]
level = "warn"
Expand Down
4 changes: 2 additions & 2 deletions chains/solana/contracts/programs/fee-quoter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fee_quoter"
version = "1.6.2"
version = "1.6.3"
description = "Created with Anchor"
edition = "2021"

Expand All @@ -21,7 +21,7 @@ anchor-lang = { version = "0.29.0", features = ["init-if-needed"] }
anchor-spl = "0.29.0"
bytemuck = "1.7"
ethnum = "1.5"
ccip_common = { version = "1.6.2", path = "../ccip-common" }
ccip_common = { path = "../ccip-common" }

[dev-dependencies]
hex = "0.4.3"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lockrelease-token-pool"
version = "1.6.2"
version = "1.6.3"
description = "Created with Anchor"
edition = "2021"

Expand All @@ -20,13 +20,9 @@ anchor-lang = { version = "0.29.0", features = ["init-if-needed"] }
anchor-spl = "0.29.0"
solana-program = "1.17.25" # pin solana to 1.17
spl-math = { version = "0.2.0", features = ["no-entrypoint"] }
base-token-pool = { version = "1.6.2", path = "../base-token-pool/", features = [
"no-entrypoint",
] }
rmn_remote = { version = "1.6.2", path = "../rmn-remote", features = [
"cpi",
] }
ccip_common = { version = "1.6.2", path = "../ccip-common" }
base-token-pool = { path = "../base-token-pool/", features = [ "no-entrypoint" ] }
rmn_remote = { path = "../rmn-remote", features = [ "cpi" ] }
ccip_common = { path = "../ccip-common" }

[build-dependencies]
build_commit = { path = "../../crates/build-commit" }
Expand Down
4 changes: 2 additions & 2 deletions chains/solana/contracts/programs/rmn-remote/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rmn_remote"
version = "1.6.2"
version = "1.6.3"
description = "Created with Anchor"
edition = "2021"

Expand All @@ -18,7 +18,7 @@ default = []
[dependencies]
anchor-lang = "0.29.0"
bytemuck = "1.7"
ccip_common = { version = "1.6.2", path = "../ccip-common" }
ccip_common = { path = "../ccip-common" }

[build-dependencies]
build_commit = { path = "../../crates/build-commit" }
Expand Down
20 changes: 6 additions & 14 deletions chains/solana/contracts/programs/test-token-pool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-token-pool"
version = "1.6.2"
version = "1.6.3"
description = "Created with Anchor"
edition = "2021"

Expand All @@ -20,19 +20,11 @@ anchor-lang = { version = "0.29.0", features = ["init-if-needed"] }
anchor-spl = "0.29.0"
solana-program = "1.17.25" # pin solana to 1.17
spl-math = { version = "0.2.0", features = ["no-entrypoint"] }
base-token-pool = { version = "1.6.2", path = "../base-token-pool/", features = [
"no-entrypoint",
] }
burnmint-token-pool = { version = "1.6.2", path = "../burnmint-token-pool", features = [
"no-entrypoint",
] }
lockrelease-token-pool = { version = "1.6.2", path = "../lockrelease-token-pool", features = [
"no-entrypoint",
] }
rmn_remote = { version = "1.6.2", path = "../rmn-remote", features = [
"cpi",
] }
ccip_common = { version = "1.6.2", path = "../ccip-common" }
base-token-pool = { path = "../base-token-pool/", features = [ "no-entrypoint" ] }
burnmint-token-pool = { path = "../burnmint-token-pool", features = [ "no-entrypoint" ] }
lockrelease-token-pool = { path = "../lockrelease-token-pool", features = [ "no-entrypoint" ] }
rmn_remote = { path = "../rmn-remote", features = [ "cpi" ] }
ccip_common = { path = "../ccip-common" }

[lints.rust.unexpected_cfgs]
level = "warn"
Expand Down
2 changes: 1 addition & 1 deletion chains/solana/contracts/target/idl/base_token_pool.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.6.2",
"version": "1.6.3",
"name": "base_token_pool",
"instructions": [],
"types": [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.6.2",
"version": "1.6.3",
"name": "burnmint_token_pool",
"instructions": [
{
Expand Down
2 changes: 1 addition & 1 deletion chains/solana/contracts/target/idl/ccip_common.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.6.2",
"version": "1.6.3",
"name": "ccip_common",
"instructions": [],
"accounts": [
Expand Down
2 changes: 1 addition & 1 deletion chains/solana/contracts/target/idl/ccip_offramp.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.6.2",
"version": "1.6.3",
"name": "ccip_offramp",
"constants": [
{
Expand Down
2 changes: 1 addition & 1 deletion chains/solana/contracts/target/idl/ccip_router.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.6.2",
"version": "1.6.3",
"name": "ccip_router",
"docs": [
"The `ccip_router` module contains the implementation of the Cross-Chain Interoperability Protocol (CCIP) Router.",
Expand Down
2 changes: 1 addition & 1 deletion chains/solana/contracts/target/idl/cctp_token_pool.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.6.2",
"version": "1.6.3",
"name": "cctp_token_pool",
"instructions": [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.6.2",
"version": "1.6.3",
"name": "example_ccip_receiver",
"docs": [
"This program an example of a CCIP Receiver Program.",
Expand Down
Loading
Loading