Skip to content

Commit f6bd0b5

Browse files
committed
fix: don't derive Clone on PyRpc
1 parent 04788f8 commit f6bd0b5

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

rust/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ crate-type = ["cdylib"]
99

1010
[dependencies]
1111
pyo3 = { version = "0.28", features = ["extension-module"] }
12-
twinleaf = "1.7"
12+
twinleaf = "1.7.1"
1313
crossbeam = "0.8"

rust/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ impl PyIter {
8181
}
8282

8383
#[pyclass(name = "_Rpc")]
84-
#[derive(Clone)]
84+
// #[derive(Clone)]
8585
struct PyRpc {
8686
inner: device::RpcDescriptor,
8787
}

0 commit comments

Comments
 (0)