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
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.

13 changes: 9 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.0"
version = "1.6.1-candidate"
description = "Created with Anchor"
edition = "2021"

Expand All @@ -19,9 +19,14 @@ default = []
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 = {path = "../rmn-remote", features = ["cpi"]}
spl-math = { version = "0.2.0", features = ["no-entrypoint"] }
rmn_remote = { version = "1.6.1-candidate", path = "../rmn-remote", features = [
"cpi",
] }

[lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = ['cfg(target_os, values("solana"))', 'cfg(feature, values("anchor-debug", "custom-panic"))']
check-cfg = [
'cfg(target_os, values("solana"))',
'cfg(feature, values("anchor-debug", "custom-panic"))',
]
19 changes: 13 additions & 6 deletions chains/solana/contracts/programs/burnmint-token-pool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "burnmint-token-pool"
version = "1.6.0"
version = "1.6.1-candidate"
description = "Created with Anchor"
edition = "2021"

Expand All @@ -19,14 +19,21 @@ default = []
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.0", path = "../base-token-pool/", features = ["no-entrypoint"] }
rmn_remote = {path = "../rmn-remote", features = ["cpi"]}
ccip_common = {path = "../ccip-common"}
spl-math = { version = "0.2.0", features = ["no-entrypoint"] }
base-token-pool = { version = "1.6.1-candidate", path = "../base-token-pool/", features = [
"no-entrypoint",
] }
rmn_remote = { version = "1.6.1-candidate", path = "../rmn-remote", features = [
"cpi",
] }
ccip_common = { version = "1.6.1-candidate", path = "../ccip-common" }

[build-dependencies]
build_commit = { path = "../../crates/build-commit" }

[lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = ['cfg(target_os, values("solana"))', 'cfg(feature, values("anchor-debug", "custom-panic"))']
check-cfg = [
'cfg(target_os, values("solana"))',
'cfg(feature, values("anchor-debug", "custom-panic"))',
]
9 changes: 6 additions & 3 deletions 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 = "0.1.1"
version = "1.6.1-candidate"
edition = "2021"

[lib]
Expand All @@ -17,11 +17,14 @@ cpi = ["no-entrypoint"]
default = ["no-entrypoint"]

[dependencies]
solana-program = "1.17.25" # pin solana to 1.17
solana-program = "1.17.25" # pin solana to 1.17
anchor-lang = { version = "0.29.0", features = ["init-if-needed"] }
anchor-spl = "0.29.0"
ethnum = "1.5"

[lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = ['cfg(target_os, values("solana"))', 'cfg(feature, values("anchor-debug", "custom-panic"))']
check-cfg = [
'cfg(target_os, values("solana"))',
'cfg(feature, values("anchor-debug", "custom-panic"))',
]
17 changes: 12 additions & 5 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 = "0.1.1"
version = "1.6.1-candidate"
description = "Created with Anchor"
edition = "2021"

Expand All @@ -21,9 +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 = {path = "../fee-quoter", features = ["cpi"]}
rmn_remote = {path = "../rmn-remote", features = ["cpi"]}
ccip_common = {path = "../ccip-common"}
fee_quoter = { version = "1.6.1-candidate", path = "../fee-quoter", features = [
"cpi",
] }
rmn_remote = { version = "1.6.1-candidate", path = "../rmn-remote", features = [
"cpi",
] }
ccip_common = { version = "1.6.1-candidate", path = "../ccip-common" }

[dev-dependencies]
hex = "0.4.3"
Expand All @@ -33,4 +37,7 @@ build_commit = { path = "../../crates/build-commit" }

[lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = ['cfg(target_os, values("solana"))', 'cfg(feature, values("anchor-debug", "custom-panic", "custom-heap"))']
check-cfg = [
'cfg(target_os, values("solana"))',
'cfg(feature, values("anchor-debug", "custom-panic", "custom-heap"))',
]
17 changes: 12 additions & 5 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 = "0.1.1"
version = "1.6.1-candidate"
description = "Created with Anchor"
edition = "2021"
build = "build.rs"
Expand All @@ -22,9 +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 = {path = "../fee-quoter", features = ["cpi"]}
rmn_remote = {path = "../rmn-remote", features = ["cpi"]}
ccip_common = {path = "../ccip-common"}
fee_quoter = { version = "1.6.1-candidate", path = "../fee-quoter", features = [
"cpi",
] }
rmn_remote = { version = "1.6.1-candidate", path = "../rmn-remote", features = [
"cpi",
] }
ccip_common = { version = "1.6.1-candidate", path = "../ccip-common" }

[dev-dependencies]
hex = "0.4.3"
Expand All @@ -34,4 +38,7 @@ build_commit = { path = "../../crates/build-commit" }

[lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = ['cfg(target_os, values("solana"))', 'cfg(feature, values("anchor-debug", "custom-panic"))']
check-cfg = [
'cfg(target_os, values("solana"))',
'cfg(feature, values("anchor-debug", "custom-panic"))',
]
13 changes: 9 additions & 4 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.0"
version = "1.6.1-candidate"
description = "USDC Token Pool for CCIP utilizing CCTP"
edition = "2021"

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

[build-dependencies]
build_commit = { path = "../../crates/build-commit" }

[lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = ['cfg(target_os, values("solana"))', 'cfg(feature, values("anchor-debug", "custom-panic", "custom-heap"))']
check-cfg = [
'cfg(target_os, values("solana"))',
'cfg(feature, values("anchor-debug", "custom-panic", "custom-heap"))',
]
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "example_ccip_sender"
version = "0.1.1"
version = "1.6.1-candidate"
description = "Created with Anchor"
edition = "2021"

Expand All @@ -20,9 +20,14 @@ custom-heap = []
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 = "0.1.1", path = "../ccip-router", features = ["no-entrypoint"]}
ccip_router = { version = "1.6.1-candidate", path = "../ccip-router", features = [
"no-entrypoint",
] }
smalloc = "0.1.2"

[lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = ['cfg(target_os, values("solana"))', 'cfg(feature, values("anchor-debug", "custom-panic"))']
check-cfg = [
'cfg(target_os, values("solana"))',
'cfg(feature, values("anchor-debug", "custom-panic"))',
]
11 changes: 7 additions & 4 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 = "0.1.1"
version = "1.6.1-candidate"
description = "Created with Anchor"
edition = "2021"

Expand All @@ -16,12 +16,12 @@ cpi = ["no-entrypoint"]
default = []

[dependencies]
solana-program = "1.17.25" # pin solana to 1.17
solana-program = "1.17.25" # pin solana to 1.17
anchor-lang = { version = "0.29.0", features = ["init-if-needed"] }
anchor-spl = "0.29.0"
bytemuck = "1.7"
ethnum = "1.5"
ccip_common = {path = "../ccip-common"}
ccip_common = { version = "1.6.1-candidate", path = "../ccip-common" }

[dev-dependencies]
hex = "0.4.3"
Expand All @@ -31,4 +31,7 @@ build_commit = { path = "../../crates/build-commit" }

[lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = ['cfg(target_os, values("solana"))', 'cfg(feature, values("anchor-debug", "custom-panic", "custom-heap"))']
check-cfg = [
'cfg(target_os, values("solana"))',
'cfg(feature, values("anchor-debug", "custom-panic", "custom-heap"))',
]
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lockrelease-token-pool"
version = "1.6.0"
version = "1.6.1-candidate"
description = "Created with Anchor"
edition = "2021"

Expand All @@ -19,14 +19,21 @@ default = []
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.0", path = "../base-token-pool/", features = ["no-entrypoint"] }
rmn_remote = {path = "../rmn-remote", features = ["cpi"]}
ccip_common = {path = "../ccip-common"}
spl-math = { version = "0.2.0", features = ["no-entrypoint"] }
base-token-pool = { version = "1.6.1-candidate", path = "../base-token-pool/", features = [
"no-entrypoint",
] }
rmn_remote = { version = "1.6.1-candidate", path = "../rmn-remote", features = [
"cpi",
] }
ccip_common = { version = "1.6.1-candidate", path = "../ccip-common" }

[build-dependencies]
build_commit = { path = "../../crates/build-commit" }

[lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = ['cfg(target_os, values("solana"))', 'cfg(feature, values("anchor-debug", "custom-panic"))']
check-cfg = [
'cfg(target_os, values("solana"))',
'cfg(feature, values("anchor-debug", "custom-panic"))',
]
Loading
Loading