-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (37 loc) · 1.19 KB
/
Cargo.toml
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
[package]
name = "solana-client-sdk"
version = "0.1.0"
edition = "2021"
description = "A Solana client SDK for BitVM Bridge"
license = "MIT OR Apache-2.0"
repository = "https://github.com/fiamma-chain/solana-client-sdk"
[lib]
name = "solana_client_sdk"
path = "src/lib.rs"
[[example]]
name = "mint"
path = "examples/mint.rs"
[[example]]
name = "burn"
path = "examples/burn.rs"
[[example]]
name = "event_listener"
path = "examples/event_listener.rs"
[dependencies]
anchor-client = { git = "https://github.com/coral-xyz/anchor", rev = "0453672", features = [
"async",
] }
bitvm-bridge = { package = "bitvm-bridge-contracts-solana", git = "https://github.com/fiamma-chain/bitvm-bridge-contracts-solana.git", branch = "main" }
btc-light-client = { package = "btc-light-client", git = "https://github.com/fiamma-chain/bitvm-bridge-contracts-solana.git", branch = "main" }
anchor-spl = { git = "https://github.com/coral-xyz/anchor", rev = "0453672", features = [
"metadata",
] }
tokio = { version = "1.41.1", features = ["full"] }
solana-transaction-status = "2.2.0"
async-trait = "0.1"
base64 = "0.22.1"
dotenv = "0.15"
anyhow = "1.0"
bs58 = "0.5.0"
serde = { version = "1.0", features = ["derive"] }
hex = "0.4.3"