Skip to content

Commit 4ce2336

Browse files
committed
fix: update package version to 0.2.31 and add Clone derive to InviteOption struct
1 parent 03c60ed commit 4ce2336

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rsipstack"
3-
version = "0.2.30"
3+
version = "0.2.31"
44
edition = "2021"
55
description = "SIP Stack Rust library for building SIP applications"
66
license = "MIT"

src/dialog/invitation.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ use tracing::{debug, info};
121121
/// # Ok(())
122122
/// # }
123123
/// ```
124-
#[derive(Default)]
124+
#[derive(Default, Clone)]
125125
pub struct InviteOption {
126126
pub caller: rsip::Uri,
127127
pub callee: rsip::Uri,

0 commit comments

Comments
 (0)