-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (32 loc) · 928 Bytes
/
Cargo.toml
File metadata and controls
37 lines (32 loc) · 928 Bytes
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
[package]
name = "spl-pod"
version = "0.5.0"
description = "Solana Program Library Plain Old Data (Pod)"
authors = ["Solana Labs Maintainers <maintainers@solanalabs.com>"]
repository = "https://github.com/solana-labs/solana-program-library"
license = "Apache-2.0"
edition = "2021"
[features]
serde-traits = ["dep:serde"]
borsh = ["dep:borsh"]
[dependencies]
borsh = { version = "1.5.3", optional = true }
bytemuck = { version = "1.21.0" }
bytemuck_derive = { version = "1.8.1" }
num-derive = "0.4"
num-traits = "0.2"
serde = { version = "1.0.217", optional = true }
solana-decode-error = "2.1.0"
solana-msg = "2.1.0"
solana-program-error = "2.1.0"
solana-program-option = "2.1.0"
solana-pubkey = "2.1.0"
solana-zk-sdk = "2.1.0"
thiserror = "2.0"
[dev-dependencies]
serde_json = "1.0.142"
base64 = { version = "0.22.1" }
[lib]
crate-type = ["cdylib", "lib"]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]