Bumps [serde](https://github.com/serde-rs/serde) from 1.0.88 to 1.0.89. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.88...v1.0.89) Signed-off-by: dependabot[bot] <support@dependabot.com>
25 lines
655 B
TOML
25 lines
655 B
TOML
[package]
|
|
name = "solana-system-program"
|
|
version = "0.12.0"
|
|
description = "Solana system program"
|
|
authors = ["Solana Maintainers <maintainers@solana.com>"]
|
|
repository = "https://github.com/solana-labs/solana"
|
|
license = "Apache-2.0"
|
|
homepage = "https://solana.com/"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
bincode = "1.1.2"
|
|
log = "0.4.2"
|
|
serde = "1.0.89"
|
|
solana-sdk = { path = "../../../sdk", version = "0.12.0" }
|
|
|
|
[lib]
|
|
name = "solana_system_program"
|
|
|
|
# Must be a static lib instead of cdylib because `SystemInstruction::CreateAccount`
|
|
# allocates Rust memory.
|
|
# cc: https://github.com/solana-labs/solana/issues/2004#issuecomment-444570081
|
|
crate-type = ["lib"]
|
|
|