voter-stake-registry/programs/voter-stake-registry/Cargo.toml

55 lines
1.8 KiB
TOML
Raw Normal View History

2021-10-05 13:40:01 -07:00
[package]
2021-12-01 04:28:38 -08:00
name = "voter-stake-registry"
version = "0.2.3"
2021-10-05 13:40:01 -07:00
description = "Created with Anchor"
edition = "2018"
[lib]
crate-type = ["cdylib", "lib"]
2021-12-01 04:28:38 -08:00
name = "voter_stake_registry"
doctest = false
2021-10-05 13:40:01 -07:00
[features]
no-entrypoint = []
no-idl = []
cpi = ["no-entrypoint"]
default = []
localnet = []
test-bpf = []
2021-10-05 13:40:01 -07:00
[dependencies]
# a) for deployment use these
2022-04-25 07:23:10 -07:00
anchor-lang = { version = "0.24.2", features = ["init-if-needed"] }
anchor-spl = { version = "0.24.2" }
# b) while testing, use below dependencies for debugging instead of above ones
# anchor-lang = { git = "https://github.com/microwavedcola1/anchor.git", branch = "master-debug" }
# anchor-spl = { git = "https://github.com/microwavedcola1/anchor.git", branch = "master-debug", features = ["governance"]}
# The rev used for spl-governance must match what the fixture binary
# programs/voter-stake-registry/tests/fixtures/spl_governance.so is built from.
2022-02-01 15:14:43 -08:00
bytemuck = "1.9.1"
# WARNING: Be careful about upgrading the spl-governance dependency!
# Recently the discriminator for new VoterWeightRecord accounts has changed, and upgrading
# this dependency here without also upgrading the spl-governance program instance beforehand
# would lead to VWR accounts that are unusable until the spl-governance program is upgraded.
spl-governance = { version = "=2.2.1", features = ["no-entrypoint"] }
spl-governance-addin-api = "=0.1.1"
2022-05-04 03:39:00 -07:00
solana-program = "~1.9.13"
static_assertions = "1.1"
[dev-dependencies]
2022-05-04 03:39:00 -07:00
solana-sdk = "~1.9.13"
solana-program-test = "~1.9.13"
solana-logger = "~1.9.13"
spl-token = { version = "^3.0.0", features = ["no-entrypoint"] }
spl-associated-token-account = { version = "^1.0.3", features = ["no-entrypoint"] }
bytemuck = "^1.7.2"
serde = "^1.0"
bincode = "^1.3.1"
log = "0.4.14"
env_logger = "0.9.0"
2022-01-19 00:06:03 -08:00
base64 = "0.13.0"