Skip to content

Commit

Permalink
Rebuilt with latest dependency updates (#505)
Browse files Browse the repository at this point in the history
Co-authored-by: oxide-reflector-bot[bot] <130185838+oxide-reflector-bot[bot]@users.noreply.github.com>
  • Loading branch information
oxide-reflector-bot[bot] authored Jan 6, 2024
1 parent 71adf65 commit d1e9cbd
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions cli/src/generated_cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@

use oxide::*;

use oxide::*;
pub struct Cli<T: CliOverride = ()> {
client: oxide::Client,
client: Client,
over: T,
}

impl Cli {
pub fn new(client: oxide::Client) -> Self {
pub fn new(client: Client) -> Self {
Self { client, over: () }
}

Expand Down Expand Up @@ -4862,7 +4863,7 @@ impl Cli {
}

impl<T: CliOverride> Cli<T> {
pub fn new_with_override(client: oxide::Client, over: T) -> Self {
pub fn new_with_override(client: Client, over: T) -> Self {
Self { client, over }
}

Expand Down
3 changes: 3 additions & 0 deletions sdk/src/generated_sdk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ pub mod types {
use serde::{Deserialize, Serialize};
#[allow(unused_imports)]
use std::convert::TryFrom;
/// Error types.
pub mod error {
/// Error from a TryFrom or FromStr implementation.
pub struct ConversionError(std::borrow::Cow<'static, str>);
Expand Down Expand Up @@ -19619,6 +19620,7 @@ pub mod types {
}
}

/// Types for composing complex structures.
pub mod builder {
#[derive(Clone, Debug)]
pub struct Address {
Expand Down Expand Up @@ -34428,6 +34430,7 @@ pub mod types {
}
}

/// Generation of default values for serde.
pub mod defaults {
pub(super) fn default_bool<const V: bool>() -> bool {
V
Expand Down

0 comments on commit d1e9cbd

Please sign in to comment.