fix: rename zombienet_configuration to pezkuwi_zombienet_configuration in doc tests

Doc tests were failing because they referenced the old crate name
'zombienet_configuration' instead of the rebranded name
'pezkuwi_zombienet_configuration'.

Files updated:
- configuration/src/lib.rs
- configuration/src/network.rs
- configuration/src/shared/node.rs
- configuration/src/shared/resources.rs
- configuration/src/shared/types.rs
This commit is contained in:
2026-01-28 06:19:35 +03:00
parent da5ddc4e20
commit 2353ec6032
5 changed files with 11 additions and 11 deletions
@@ -9,7 +9,7 @@
//!
//! # Example
//! ```
//! use zombienet_configuration::NetworkConfigBuilder;
//! use pezkuwi_zombienet_configuration::NetworkConfigBuilder;
//!
//! let simple_configuration = NetworkConfigBuilder::new()
//! .with_relaychain(|relaychain| {
@@ -288,7 +288,7 @@ states! {
/// # Example:
///
/// ```
/// use zombienet_configuration::NetworkConfigBuilder;
/// use pezkuwi_zombienet_configuration::NetworkConfigBuilder;
///
/// let network_config = NetworkConfigBuilder::new()
/// .with_relaychain(|relaychain| {
@@ -32,7 +32,7 @@ states! {
/// # Examples:
///
/// ```
/// use zombienet_configuration::shared::node::EnvVar;
/// use pezkuwi_zombienet_configuration::shared::node::EnvVar;
///
/// let simple_var: EnvVar = ("FOO", "BAR").into();
///
@@ -737,7 +737,7 @@ impl NodeConfigBuilder<Buildable> {
/// # Examples
///
/// ```
/// use zombienet_configuration::shared::{node::NodeConfigBuilder, types::ChainDefaultContext};
/// use pezkuwi_zombienet_configuration::shared::{node::NodeConfigBuilder, types::ChainDefaultContext};
///
/// let config = NodeConfigBuilder::new(ChainDefaultContext::default(), Default::default())
/// .with_name("node")
@@ -21,7 +21,7 @@ use super::{
/// # Examples
///
/// ```
/// use zombienet_configuration::shared::resources::ResourceQuantity;
/// use pezkuwi_zombienet_configuration::shared::resources::ResourceQuantity;
///
/// let quantity1: ResourceQuantity = "100000".try_into().unwrap();
/// let quantity2: ResourceQuantity = "1000m".try_into().unwrap();
@@ -89,7 +89,7 @@ impl<'de> Deserialize<'de> for U128 {
///
/// # Examples:
/// ```
/// use zombienet_configuration::shared::types::Chain;
/// use pezkuwi_zombienet_configuration::shared::types::Chain;
///
/// let polkadot: Chain = "polkadot".try_into().unwrap();
/// let dicle: Chain = "dicle".try_into().unwrap();
@@ -129,7 +129,7 @@ impl Chain {
///
/// # Examples:
/// ```
/// use zombienet_configuration::shared::types::Image;
/// use pezkuwi_zombienet_configuration::shared::types::Image;
///
/// let image1: Image = "name".try_into().unwrap();
/// let image2: Image = "name:version".try_into().unwrap();
@@ -181,7 +181,7 @@ impl Image {
///
/// # Examples:
/// ```
/// use zombienet_configuration::shared::types::Command;
/// use pezkuwi_zombienet_configuration::shared::types::Command;
///
/// let command1: Command = "mycommand".try_into().unwrap();
/// let command2: Command = "myothercommand".try_into().unwrap();
@@ -220,7 +220,7 @@ impl Command {
///
/// # Examples:
/// ```
/// use zombienet_configuration::shared::types::CommandWithCustomArgs;
/// use pezkuwi_zombienet_configuration::shared::types::CommandWithCustomArgs;
///
/// let command1: CommandWithCustomArgs = "mycommand --demo=2 --other-flag".try_into().unwrap();
/// let command2: CommandWithCustomArgs = "my_other_cmd_without_args".try_into().unwrap();
@@ -276,7 +276,7 @@ impl CommandWithCustomArgs {
/// ```
/// use url::Url;
/// use std::{path::PathBuf, str::FromStr};
/// use zombienet_configuration::shared::types::AssetLocation;
/// use pezkuwi_zombienet_configuration::shared::types::AssetLocation;
///
/// let url_location: AssetLocation = Url::from_str("https://mycloudstorage.com/path/to/my/file.tgz").unwrap().into();
/// let url_location2: AssetLocation = "https://mycloudstorage.com/path/to/my/file.tgz".into();
@@ -398,7 +398,7 @@ impl<'de> Deserialize<'de> for AssetLocation {
///
/// # Examples:
/// ```
/// use zombienet_configuration::shared::types::Arg;
/// use pezkuwi_zombienet_configuration::shared::types::Arg;
///
/// let flag_arg: Arg = "myflag".into();
/// let option_arg: Arg = ("name", "value").into();