solana/sdk/program/Cargo.toml

64 lines
1.6 KiB
TOML
Raw Normal View History

2020-10-19 13:17:46 -07:00
[package]
name = "solana-program"
2021-12-04 00:18:04 -08:00
version = "1.10.0"
description = "Solana Program"
2020-10-19 13:17:46 -07:00
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
repository = "https://github.com/solana-labs/solana"
homepage = "https://solana.com/"
documentation = "https://docs.rs/solana-program"
2021-06-23 14:22:35 -07:00
readme = "README.md"
2020-10-19 13:17:46 -07:00
license = "Apache-2.0"
2021-11-30 16:47:00 -08:00
edition = "2021"
2020-10-19 13:17:46 -07:00
[dependencies]
bincode = "1.3.1"
blake3 = { version = "1.2.0", features = ["traits-preview"] }
borsh = "0.9.1"
borsh-derive = "0.9.1"
bs58 = "0.4.0"
2021-10-06 17:38:34 -07:00
bytemuck = { version = "1.7.2", features = ["derive"] }
bv = { version = "0.11.1", features = ["serde"] }
itertools = "0.10.1"
lazy_static = "1.4.0"
log = "0.4.14"
num-derive = "0.3"
num-traits = "0.2"
rustversion = "1.0.3"
2020-10-19 13:17:46 -07:00
serde = "1.0.112"
serde_bytes = "0.11"
2020-10-19 13:17:46 -07:00
serde_derive = "1.0.103"
sha2 = "0.10.0"
sha3 = "0.10.0"
2021-12-04 00:18:04 -08:00
solana-frozen-abi = { path = "../../frozen-abi", version = "=1.10.0" }
solana-frozen-abi-macro = { path = "../../frozen-abi/macro", version = "=1.10.0" }
solana-sdk-macro = { path = "../macro", version = "=1.10.0" }
thiserror = "1.0"
[target.'cfg(not(target_arch = "bpf"))'.dependencies]
bitflags = "1.3.1"
base64 = "0.13"
curve25519-dalek = "3.0.0"
libsecp256k1 = "0.6.0"
rand = "0.7.0"
2021-12-04 00:18:04 -08:00
solana-logger = { path = "../../logger", version = "=1.10.0" }
itertools = "0.10.1"
[target.'cfg(not(target_pointer_width = "64"))'.dependencies]
parking_lot = "0.11"
[dev-dependencies]
anyhow = "1.0.45"
assert_matches = "1.3.0"
bincode = "1.3.1"
serde_json = "1.0.56"
static_assertions = "1.1.0"
[build-dependencies]
rustc_version = "0.4"
2020-10-19 13:17:46 -07:00
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[lib]
crate-type = ["cdylib", "rlib"]