-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (54 loc) · 2.12 KB
/
Cargo.toml
File metadata and controls
57 lines (54 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "cctp-client"
version = "0.1.0"
edition = "2024"
description = "Multi chain bridge for USDC"
repository = "https://github.com/CarteraMesh/cctp-client"
authors = ["gh@cartera-mesh.com"]
documentation = "https://docs.rs/cctp-client"
homepage = "https://github.com/CarteraMesh/cctp-client"
categories = ["finance", "api-bindings"]
keywords = ["defi", "solana", "ethereum", "web3", "blockchain", "sdk"]
license = "Apache-2.0"
readme = "README.md"
[dependencies]
alloy-chains = "0.2"
alloy-contract = { version = "1", default-features = false }
alloy-json-rpc = { version = "1", default-features = false }
alloy-network = { version = "1", default-features = false }
alloy-primitives = { version = "1", default-features = false, features = [
"std",
"rlp",
] }
alloy-provider = { version = "1", default-features = false, features = [
"anvil-node",
"reqwest",
] }
alloy-rpc-types = "1"
alloy-sol-types = { version = "1", features = ["json"] }
alloy-transport = { version = "1", default-features = false }
nitrogen-circle-message-transmitter-v2-encoder = { git = "https://github.com/CarteraMesh/nitrogen.git", branch = "main" }
nitrogen-circle-token-messenger-minter-v2-encoder = { git = "https://github.com/CarteraMesh/nitrogen.git", branch = "main" }
nitrogen-instruction-builder = { git = "https://github.com/CarteraMesh/nitrogen.git", branch = "main" }
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
solana-keypair = "2"
solana-pubkey = { version = "2", features = ["serde"] }
solana-rpc-client = { version = "2" }
solana-signature = "2"
solana-signer = "2"
spl-associated-token-account = { version = "7.0.0", features = ["no-entrypoint"] }
thiserror = "2"
tokio = { version = "1", default-features = false, features = ["time"] }
tracing = "0.1"
[dev-dependencies]
alloy-signer-local = "1"
anyhow = "1"
dotenvy = "0.15"
rstest = "0.26"
solana-commitment-config = "2"
tokio = { version = "1", features = ["test-util", "macros", "rt-multi-thread"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[lints.clippy]
match_like_matches_macro = "allow"