-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathCargo.toml
40 lines (33 loc) · 871 Bytes
/
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
[package]
name = "spl-token"
version = "7.0.0"
description = "Solana Program Library Token"
authors = ["Anza Maintainers <[email protected]>"]
repository = "https://github.com/solana-program/token"
license = "Apache-2.0"
edition = "2021"
[features]
no-entrypoint = []
test-sbf = []
[dependencies]
arrayref = "0.3.9"
bytemuck = "1.20.0"
num-derive = "0.4"
num-traits = "0.2"
num_enum = "0.7.3"
solana-program = "2.1.0"
thiserror = "2.0"
[dev-dependencies]
lazy_static = "1.5.0"
mollusk-svm = { version = "0.0.13", git = "https://github.com/febo/mollusk.git", branch = "data-slice-check" }
proptest = "1.5"
serial_test = "3.2.0"
solana-sdk = "2.1.0"
[lib]
crate-type = ["cdylib", "lib"]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[lints]
workspace = true
[package.metadata.solana]
program-id = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"