-
Notifications
You must be signed in to change notification settings - Fork 69
/
Cargo.toml
42 lines (38 loc) · 1.35 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 = "mpl-token-metadata"
version = "1.13.1"
description = "Metaplex Metadata"
authors = ["Metaplex Developers <dev@metaplex.com>"]
repository = "https://github.com/metaplex-foundation/metaplex-program-library"
license-file = "../../../LICENSE"
edition = "2021"
readme = "README.md"
[features]
no-entrypoint = []
test-bpf = []
serde-feature = ["serde", "serde_with"]
[dependencies]
num-derive = "0.3"
arrayref = "0.3.6"
num-traits = "0.2"
solana-program = "~1.14.13"
spl-token = { version = "3.2.0", features = ["no-entrypoint"] }
spl-associated-token-account = { version = "1.1.1", features = ["no-entrypoint"] }
mpl-token-auth-rules = { version = "1.1", features = ["no-entrypoint"] }
thiserror = "1.0"
borsh = "0.9.3"
shank = { version = "0.0.11" }
serde = { version = "1.0.149", optional = true }
serde_with = { version = "1.14.0", optional = true }
mpl-utils = { version = "0.2.0" }
mpl-token-metadata-context-derive = { version = "0.3.0", path = "../macro" }
[dev-dependencies]
rmp-serde = "1.1.1"
rooster = { git = "https://github.com/metaplex-foundation/rooster", rev = "ca1221c" }
solana-sdk = "~1.14.13"
solana-program-test = "~1.14.13"
serde = { version = "1.0.147", features = ["derive"]}
async-trait = "0.1.64"
old-token-metadata = { package = "mpl-token-metadata", version = "=1.10.0", features = ["no-entrypoint"] }
[lib]
crate-type = ["cdylib", "lib"]