2019-03-02 13:23:22 -08:00
|
|
|
[package]
|
2019-11-20 16:32:19 -08:00
|
|
|
name = "solana-budget-program"
|
2021-03-12 23:31:17 -08:00
|
|
|
version = "1.7.0"
|
2019-11-20 16:32:19 -08:00
|
|
|
description = "Solana Budget program"
|
2020-06-13 14:41:05 -07:00
|
|
|
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
|
2019-03-02 13:23:22 -08:00
|
|
|
repository = "https://github.com/solana-labs/solana"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
homepage = "https://solana.com/"
|
2021-03-10 12:46:17 -08:00
|
|
|
documentation = "https://docs.rs/solana-budget-program"
|
2019-03-02 13:23:22 -08:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-07-08 17:08:05 -07:00
|
|
|
bincode = "1.3.1"
|
2020-03-10 07:43:18 -07:00
|
|
|
chrono = { version = "0.4.11", features = ["serde"] }
|
2020-12-12 20:48:23 -08:00
|
|
|
log = "0.4.11"
|
2019-09-27 19:20:57 -07:00
|
|
|
num-derive = "0.3"
|
2019-04-25 10:29:44 -07:00
|
|
|
num-traits = "0.2"
|
2021-02-05 02:23:24 -08:00
|
|
|
serde = "1.0.122"
|
2019-11-26 14:44:20 -08:00
|
|
|
serde_derive = "1.0.103"
|
2021-03-12 23:31:17 -08:00
|
|
|
solana-sdk = { path = "../../sdk", version = "1.7.0" }
|
2019-12-02 14:42:05 -08:00
|
|
|
thiserror = "1.0"
|
2019-03-02 13:23:22 -08:00
|
|
|
|
2019-03-21 15:24:54 -07:00
|
|
|
[dev-dependencies]
|
2021-03-12 23:31:17 -08:00
|
|
|
solana-runtime = { path = "../../runtime", version = "1.7.0" }
|
2019-03-21 15:24:54 -07:00
|
|
|
|
2019-03-02 13:23:22 -08:00
|
|
|
[lib]
|
2019-11-20 16:32:19 -08:00
|
|
|
crate-type = ["lib", "cdylib"]
|
|
|
|
name = "solana_budget_program"
|
2020-04-16 18:18:28 -07:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|