-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (32 loc) · 1008 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "msgpack-numpy"
version = "0.1.3"
edition = "2021"
authors = ["Terence Liu [email protected]>"]
description = "A Rust implementation of msgpack-numpy for de-/serializing NumPy scalars and arrays that matches the Python implementation"
license = "MIT"
homepage = "https://github.com/clearviewai/msgpack-numpy-rs"
repository = "https://github.com/clearviewai/msgpack-numpy-rs"
readme = "README.md"
keywords = ["msgpack", "numpy", "serde", "serialization", "ndarray"]
categories = ["encoding", "science"]
[dependencies]
anyhow = "1"
thiserror = "1"
half = { version = "2", features = ["num-traits"] }
num-traits = "0.2"
ndarray = ">=0.15, <0.17"
serde = { version = "1", features = ["derive"] }
serde_bytes = "0.11"
rmp-serde = "1.1"
[dev-dependencies]
ctor = "0.2"
rstest = "0.22"
[[bin]]
name = "test_helpers_serialize"
path = "tests/helpers/serialize.rs"
doc = false
[[bin]]
name = "bench_serialize_and_deserialize"
path = "benches/bench_serialize_and_deserialize.rs"
doc = false