apify-client 0.4.1

An official, but experimental, AI-generated and AI-maintained Rust client for the Apify API (https://apify.com).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Version constants exposed by the client.

/// Semantic version of this client crate.
///
/// This is sourced from the crate's `Cargo.toml` `version` field at compile time
/// and follows [Semantic Versioning](https://semver.org/).
pub const CLIENT_VERSION: &str = env!("CARGO_PKG_VERSION");

/// The version of the Apify OpenAPI specification that this client was generated
/// and verified against.
///
/// This corresponds to the `info.version` field of the Apify OpenAPI document.
pub const API_SPEC_VERSION: &str = "v2-2026-06-25T142310Z";