diff --git a/vendor/pezkuwi-zombienet-sdk/crates/configuration/src/lib.rs b/vendor/pezkuwi-zombienet-sdk/crates/configuration/src/lib.rs index 0e5588da..0bad65cc 100644 --- a/vendor/pezkuwi-zombienet-sdk/crates/configuration/src/lib.rs +++ b/vendor/pezkuwi-zombienet-sdk/crates/configuration/src/lib.rs @@ -9,7 +9,7 @@ //! //! # Example //! ``` -//! use zombienet_configuration::NetworkConfigBuilder; +//! use pezkuwi_zombienet_configuration::NetworkConfigBuilder; //! //! let simple_configuration = NetworkConfigBuilder::new() //! .with_relaychain(|relaychain| { diff --git a/vendor/pezkuwi-zombienet-sdk/crates/configuration/src/network.rs b/vendor/pezkuwi-zombienet-sdk/crates/configuration/src/network.rs index 2b16b0b4..e9e59621 100644 --- a/vendor/pezkuwi-zombienet-sdk/crates/configuration/src/network.rs +++ b/vendor/pezkuwi-zombienet-sdk/crates/configuration/src/network.rs @@ -288,7 +288,7 @@ states! { /// # Example: /// /// ``` -/// use zombienet_configuration::NetworkConfigBuilder; +/// use pezkuwi_zombienet_configuration::NetworkConfigBuilder; /// /// let network_config = NetworkConfigBuilder::new() /// .with_relaychain(|relaychain| { diff --git a/vendor/pezkuwi-zombienet-sdk/crates/configuration/src/shared/node.rs b/vendor/pezkuwi-zombienet-sdk/crates/configuration/src/shared/node.rs index b684fcf9..4910d2ce 100644 --- a/vendor/pezkuwi-zombienet-sdk/crates/configuration/src/shared/node.rs +++ b/vendor/pezkuwi-zombienet-sdk/crates/configuration/src/shared/node.rs @@ -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 { /// # 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") diff --git a/vendor/pezkuwi-zombienet-sdk/crates/configuration/src/shared/resources.rs b/vendor/pezkuwi-zombienet-sdk/crates/configuration/src/shared/resources.rs index e6e5225f..40cd1a6a 100644 --- a/vendor/pezkuwi-zombienet-sdk/crates/configuration/src/shared/resources.rs +++ b/vendor/pezkuwi-zombienet-sdk/crates/configuration/src/shared/resources.rs @@ -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(); diff --git a/vendor/pezkuwi-zombienet-sdk/crates/configuration/src/shared/types.rs b/vendor/pezkuwi-zombienet-sdk/crates/configuration/src/shared/types.rs index fb7fa3f7..8be78287 100644 --- a/vendor/pezkuwi-zombienet-sdk/crates/configuration/src/shared/types.rs +++ b/vendor/pezkuwi-zombienet-sdk/crates/configuration/src/shared/types.rs @@ -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();