codex / codex-rs /exec-server /src /server /release_version.rs
SaylorTwift's picture
SaylorTwift HF Staff
Add files using upload-large-folder tool
ea39c0e verified
Raw
History Blame Contribute Delete
342 Bytes
//! 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()
}
}