forked from anza-xyz/solana-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
56 lines (50 loc) · 1.74 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
53
54
55
56
[package]
name = "solana-address-lookup-table-interface"
description = "Solana address lookup table interface."
documentation = "https://docs.rs/solana-address-lookup-table-interface"
version = "2.2.2"
authors = { workspace = true }
repository = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
edition = { workspace = true }
[dependencies]
bincode = { workspace = true, optional = true }
bytemuck = { workspace = true, optional = true }
serde = { workspace = true, optional = true }
serde_derive = { workspace = true, optional = true }
solana-clock = { workspace = true }
solana-frozen-abi = { workspace = true, features = [
"frozen-abi",
], optional = true }
solana-frozen-abi-macro = { workspace = true, features = [
"frozen-abi",
], optional = true }
solana-instruction = { workspace = true, features = ["std"], optional = true }
solana-pubkey = { workspace = true }
solana-sdk-ids = { workspace = true }
solana-slot-hashes = { workspace = true }
[target.'cfg(not(target_os = "solana"))'.dependencies]
solana-pubkey = { workspace = true, features = ["curve25519"] }
[dev-dependencies]
solana-address-lookup-table-interface = { path = ".", features = [
"dev-context-only-utils",
] }
solana-hash = { workspace = true }
[features]
bincode = [
"dep:bincode",
"dep:solana-instruction",
"serde",
"solana-instruction/bincode",
]
bytemuck = ["dep:bytemuck", "solana-pubkey/bytemuck"]
dev-context-only-utils = ["bincode", "bytemuck"]
frozen-abi = ["dep:solana-frozen-abi", "dep:solana-frozen-abi-macro", "serde"]
serde = ["dep:serde", "dep:serde_derive", "solana-pubkey/serde"]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
all-features = true
rustdoc-args = ["--cfg=docsrs"]
[lints]
workspace = true