Skip to main content

apify_client/
version.rs

1//! Version constants exposed by the client.
2
3/// Semantic version of this client crate.
4///
5/// This is sourced from the crate's `Cargo.toml` `version` field at compile time
6/// and follows [Semantic Versioning](https://semver.org/).
7pub const CLIENT_VERSION: &str = env!("CARGO_PKG_VERSION");
8
9/// The version of the Apify OpenAPI specification that this client was generated
10/// and verified against.
11///
12/// This corresponds to the `info.version` field of the Apify OpenAPI document.
13pub const API_SPEC_VERSION: &str = "v2-2026-06-25T142310Z";