-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (40 loc) · 1.47 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
43
44
45
46
47
48
49
50
51
52
[package]
name = "bubblegum-batch-sdk"
version = "0.1.0"
edition = "2021"
[features]
default = ["mainnet"]
mainnet = ["mpl-common-constants/mainnet"]
devnet = ["mpl-common-constants/devnet"]
[dependencies]
async-trait = "0.1.80"
paste = "1"
thiserror = "^1.0.63"
uuid = { version = "1.6" }
sha2 = "0.10"
chrono = "^0.4"
bytemuck = "1.13"
borsh = ">= 0.9, < 1.0"
serde = {version = "1"}
serde_derive = "1"
serde_json = { version = "1", features = ["raw_value"] }
serde_with = "3.7"
anchor-lang = "0.29.0"
solana-sdk = "~1.18.11"
solana-program = "~1.18.11"
solana-client = "~1.18.11"
solana-rpc-client-api = "~1.18.11"
mpl-common-constants = { git = "https://github.com/adm-metaex/mpl-common-constants.git", branch = "main" }
mpl-bubblegum = { git = "https://github.com/metaplex-foundation/mpl-bubblegum.git", rev = "07678e6", features = ["serde"] }
spl-account-compression = { version = "0.4.2", features = ["no-entrypoint"] }
spl-concurrent-merkle-tree = { version = "0.4.1", default-features = false }
spl-merkle-tree-reference = { version = "0.1.0" }
spl-noop = { version = "0.2.0", features = ["no-entrypoint"] }
blockbuster = { git = "https://github.com/metaplex-foundation/blockbuster.git", rev = "0aa1878" }
mplx-staking-states = { git = "https://github.com/metaplex-foundation/aura-staking.git" }
mplx-rewards = { git = "https://github.com/metaplex-foundation/aura-rewards.git", features = ["no-entrypoint"] }
rand = "0.8.5"
[dev-dependencies]
tokio = "1"
base64 = "0.22"
serial_test = "3"