2020-10-19 21:07:46 -07:00
|
|
|
[package]
|
|
|
|
name = "solana-frozen-abi"
|
|
|
|
description = "Solana Frozen ABI"
|
2021-03-10 12:46:17 -08:00
|
|
|
documentation = "https://docs.rs/solana-frozen-abi"
|
2023-02-23 06:01:54 -08:00
|
|
|
version = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
2020-10-19 21:07:46 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2023-02-23 06:01:54 -08:00
|
|
|
bs58 = { workspace = true }
|
|
|
|
bv = { workspace = true, features = ["serde"] }
|
|
|
|
lazy_static = { workspace = true }
|
|
|
|
log = { workspace = true, features = ["std"] }
|
|
|
|
serde = { workspace = true, features = ["derive", "rc"] }
|
|
|
|
serde_bytes = { workspace = true }
|
|
|
|
serde_derive = { workspace = true }
|
|
|
|
sha2 = { workspace = true }
|
|
|
|
solana-frozen-abi-macro = { workspace = true }
|
|
|
|
thiserror = { workspace = true }
|
2020-10-19 21:07:46 -07:00
|
|
|
|
2022-05-19 19:51:23 -07:00
|
|
|
[target.'cfg(not(target_os = "solana"))'.dependencies]
|
2023-05-18 11:47:27 -07:00
|
|
|
block-buffer = { workspace = true }
|
2023-02-23 06:01:54 -08:00
|
|
|
either = { workspace = true, features = ["use_std"] }
|
|
|
|
generic-array = { workspace = true, features = ["serde", "more_lengths"] }
|
|
|
|
im = { workspace = true, features = ["rayon", "serde"] }
|
|
|
|
memmap2 = { workspace = true }
|
|
|
|
subtle = { workspace = true }
|
2020-10-19 21:07:46 -07:00
|
|
|
|
2022-05-19 19:51:23 -07:00
|
|
|
[target.'cfg(not(target_os = "solana"))'.dev-dependencies]
|
2023-10-06 21:15:38 -07:00
|
|
|
bitflags = { workspace = true }
|
2023-10-17 01:12:15 -07:00
|
|
|
solana-logger = { workspace = true }
|
2021-12-22 09:01:33 -08:00
|
|
|
|
2020-10-19 21:07:46 -07:00
|
|
|
[build-dependencies]
|
2023-02-23 06:01:54 -08:00
|
|
|
rustc_version = { workspace = true }
|