diff --git a/Cargo.toml b/Cargo.toml index 1dbc400..3fedb49 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "amp-client" description = "The Amphitheatre API client for Rust" -version = "0.6.2" +version = "0.6.3" edition = "2021" license = "Apache-2.0" homepage = "https://amphitheatre.app" @@ -11,7 +11,7 @@ readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -amp-common = { git = "https://github.com/amphitheatre-app/common", tag = "v0.6.1" } +amp-common = { git = "https://github.com/amphitheatre-app/common", tag = "v0.6.2" } futures = "0.3" reqwest-eventsource = "0.5.0" serde = { version = "1.0", features = ["derive"] } diff --git a/src/actors.rs b/src/actors.rs index 0d48dc4..fcd439b 100644 --- a/src/actors.rs +++ b/src/actors.rs @@ -20,7 +20,7 @@ use reqwest_eventsource::EventSource; use serde::{Deserialize, Serialize}; use serde_json::Value; -#[derive(Debug, Deserialize, Serialize)] +#[derive(Clone, Debug, Deserialize, Serialize)] pub struct Actor { /// The actor id pub id: u64,