File size: 342 Bytes
ea39c0e | 1 2 3 4 5 6 7 8 9 10 11 12 13 | //! Include the startup-cached package release version in executor metadata.
use codex_build_info::BuildInfo;
use crate::protocol::EnvironmentInfo;
pub(super) fn local_environment_info() -> EnvironmentInfo {
EnvironmentInfo {
executor_version: BuildInfo::get().version().to_string(),
..EnvironmentInfo::local()
}
}
|