Skip to content

[serde_multipart] new crate: multipart codec for serde #831

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 8 commits into from
15 changes: 15 additions & 0 deletions serde_multipart/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# @generated by autocargo from //monarch/serde_multipart:serde_multipart

[package]
name = "serde_multipart"
version = "0.0.0"
authors = ["Facebook <[email protected]>"]
edition = "2021"
description = "multipart encoding for serde"
repository = "https://github.com/pytorch-labs/monarch/"
license = "BSD-3-Clause"

[dependencies]
bincode = "1.3.3"
bytes = { version = "1.10", features = ["serde"] }
serde = { version = "1.0.219", features = ["derive", "rc"] }
9 changes: 9 additions & 0 deletions serde_multipart/src/de.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/

pub mod bincode;
Loading