Skip to content

Commit 4e9b3b1

Browse files
authored
chore: add MSRV (#612)
Signed-off-by: Keming <[email protected]>
1 parent 53b809d commit 4e9b3b1

File tree

3 files changed

+37
-29
lines changed

3 files changed

+37
-29
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ documentation = "https://docs.rs/mosec"
1111
categories = ["science"]
1212
keywords = ["machine-learning", "deep-learning", "cloud", "model-serving", "service"]
1313
exclude = ["target", "examples", "tests", "scripts"]
14+
rust-version = "1.78"
1415

1516
[dependencies]
1617
bytes = "1.9"

mosec/mixin/plasma_worker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def serialize_ipc(self, data: Any) -> bytes:
6969

7070
def deserialize_ipc(self, data: bytes) -> Any:
7171
"""Get the data from the plasma server and delete it."""
72-
from pyarrow import plasma
72+
from pyarrow import plasma # type: ignore
7373

7474
client = self._get_client()
7575
object_id = plasma.ObjectID(bytes(data))

0 commit comments

Comments
 (0)