29 lines
713 B
TOML
29 lines
713 B
TOML
[package]
|
|
name = "solana-merkle-tree"
|
|
version = "1.11.0"
|
|
description = "Solana Merkle Tree"
|
|
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-merkle-tree"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
fast-math = "0.1"
|
|
solana-program = { path = "../sdk/program", version = "=1.11.0" }
|
|
|
|
# This can go once the BPF toolchain target Rust 1.42.0+
|
|
[target.bpfel-unknown-unknown.dependencies]
|
|
matches = "0.1.9"
|
|
|
|
[dev-dependencies]
|
|
hex = "0.4.3"
|
|
|
|
[lib]
|
|
crate-type = ["lib"]
|
|
name = "solana_merkle_tree"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|