Crates.io | corepack |
lib.rs | corepack |
version | 0.4.1 |
source | src |
created_at | 2017-01-25 17:41:38.943754 |
updated_at | 2020-04-13 03:28:11.570388 |
description | A no_std support for messagepack in serde |
homepage | |
repository | https://github.com/jrasky/corepack.git |
max_upload_size | |
id | 8222 |
size | 81,189 |
A better messagepack implementation for serde
To use:
corepack = "~0.4.0"
If you want to use corepack in a no_std
environment (nightly rust required),
disable the "std" feature and enable the "alloc" feature:
corepack = { version = "~0.4.0", default-features = false, features = ["alloc"] }
You must choose either "std" or "alloc" as a feature. Corepack currently requires dynamic allocations in a few situations.