fixup cloneability
This commit is contained in:
parent
e5d58f053a
commit
a77e126319
|
@ -622,7 +622,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "dnapi-rs"
|
name = "dnapi-rs"
|
||||||
version = "0.1.3"
|
version = "0.1.4"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"base64 0.21.0",
|
"base64 0.21.0",
|
||||||
"base64-serde",
|
"base64-serde",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "dnapi-rs"
|
name = "dnapi-rs"
|
||||||
version = "0.1.3"
|
version = "0.1.4"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "A rust client for the Defined Networking API"
|
description = "A rust client for the Defined Networking API"
|
||||||
license = "AGPL-3.0-or-later"
|
license = "AGPL-3.0-or-later"
|
||||||
|
|
|
@ -5,7 +5,7 @@ use trifid_pki::cert::{deserialize_ed25519_public_many, serialize_ed25519_public
|
||||||
use trifid_pki::ed25519_dalek::{SigningKey, VerifyingKey};
|
use trifid_pki::ed25519_dalek::{SigningKey, VerifyingKey};
|
||||||
use serde::{Serialize, Deserialize};
|
use serde::{Serialize, Deserialize};
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize)]
|
#[derive(Serialize, Deserialize, Clone)]
|
||||||
/// Contains information necessary to make requests against the `DNClient` API.
|
/// Contains information necessary to make requests against the `DNClient` API.
|
||||||
pub struct Credentials {
|
pub struct Credentials {
|
||||||
/// The assigned Host ID that this client represents
|
/// The assigned Host ID that this client represents
|
||||||
|
|
Loading…
Reference in New Issue