37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
TOML
[package]
|
|
name = "solana-address-lookup-table-program"
|
|
version = "1.11.0"
|
|
description = "Solana address lookup table program"
|
|
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
|
repository = "https://github.com/solana-labs/solana"
|
|
license = "Apache-2.0"
|
|
homepage = "https://solana.com/"
|
|
documentation = "https://docs.rs/solana-address-loookup-table-program"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
bincode = "1.3.3"
|
|
bytemuck = "1.8.0"
|
|
log = "0.4.14"
|
|
num-derive = "0.3"
|
|
num-traits = "0.2"
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
|
solana-frozen-abi = { path = "../../frozen-abi", version = "=1.11.0" }
|
|
solana-frozen-abi-macro = { path = "../../frozen-abi/macro", version = "=1.11.0" }
|
|
solana-program = { path = "../../sdk/program", version = "=1.11.0" }
|
|
thiserror = "1.0"
|
|
|
|
[target.'cfg(not(target_arch = "bpf"))'.dependencies]
|
|
solana-program-runtime = { path = "../../program-runtime", version = "=1.11.0" }
|
|
solana-sdk = { path = "../../sdk", version = "=1.11.0" }
|
|
|
|
[build-dependencies]
|
|
rustc_version = "0.4"
|
|
|
|
[lib]
|
|
crate-type = ["lib"]
|
|
name = "solana_address_lookup_table_program"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|