Bump typify from `c840ea7` to `55d9fa1` (#264)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Adam H. Leventhal <ahl@oxide.computer>
This commit is contained in:
parent
dcc4c2fa3a
commit
83ed0e14bb
|
@ -1922,7 +1922,7 @@ checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
|
|||
[[package]]
|
||||
name = "typify"
|
||||
version = "0.0.11-dev"
|
||||
source = "git+https://github.com/oxidecomputer/typify#c840ea7b7799eab9a8df220535c1368f402374de"
|
||||
source = "git+https://github.com/oxidecomputer/typify#55d9fa1ac5c2094668077bcba38b31f422add76b"
|
||||
dependencies = [
|
||||
"typify-impl",
|
||||
"typify-macro",
|
||||
|
@ -1931,7 +1931,7 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "typify-impl"
|
||||
version = "0.0.11-dev"
|
||||
source = "git+https://github.com/oxidecomputer/typify#c840ea7b7799eab9a8df220535c1368f402374de"
|
||||
source = "git+https://github.com/oxidecomputer/typify#55d9fa1ac5c2094668077bcba38b31f422add76b"
|
||||
dependencies = [
|
||||
"heck",
|
||||
"log",
|
||||
|
@ -1949,7 +1949,7 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "typify-macro"
|
||||
version = "0.0.11-dev"
|
||||
source = "git+https://github.com/oxidecomputer/typify#c840ea7b7799eab9a8df220535c1368f402374de"
|
||||
source = "git+https://github.com/oxidecomputer/typify#55d9fa1ac5c2094668077bcba38b31f422add76b"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
|
|
@ -1339,6 +1339,15 @@ pub mod types {
|
|||
}
|
||||
}
|
||||
|
||||
impl ToString for IpNet {
|
||||
fn to_string(&self) -> String {
|
||||
match self {
|
||||
Self::V4(x) => x.to_string(),
|
||||
Self::V6(x) => x.to_string(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
///Identity-related metadata that's included in nearly all public API
|
||||
/// objects
|
||||
#[derive(Clone, Debug, Deserialize, Serialize)]
|
||||
|
|
|
@ -1359,6 +1359,15 @@ pub mod types {
|
|||
}
|
||||
}
|
||||
|
||||
impl ToString for IpNet {
|
||||
fn to_string(&self) -> String {
|
||||
match self {
|
||||
Self::V4(x) => x.to_string(),
|
||||
Self::V6(x) => x.to_string(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
///Identity-related metadata that's included in nearly all public API
|
||||
/// objects
|
||||
#[derive(Clone, Debug, Deserialize, Serialize, JsonSchema)]
|
||||
|
|
|
@ -1135,6 +1135,15 @@ pub mod types {
|
|||
}
|
||||
}
|
||||
|
||||
impl ToString for IpNet {
|
||||
fn to_string(&self) -> String {
|
||||
match self {
|
||||
Self::V4(x) => x.to_string(),
|
||||
Self::V6(x) => x.to_string(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
///Identity-related metadata that's included in nearly all public API
|
||||
/// objects
|
||||
#[derive(Clone, Debug, Deserialize, Serialize)]
|
||||
|
|
Loading…
Reference in New Issue