1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#[cfg(feature = "rkyv-bytecheck-impl")]
use rkyv_latest as rkyv;
/// A serializable, wrapped struct for the diagnostics information
/// included in plugin binaries.
/// TODO: Must implement bytecheck with forward-compatible schema changes to
/// prevent handshake failure.
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(
any(feature = "rkyv-impl", feature = "rkyv-bytecheck-impl"),
derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
pub struct PluginCorePkgDiagnostics {
pub pkg_version: String,
pub git_sha: String,
pub cargo_features: String,
pub ast_schema_version: u32,
}