-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
27 lines (24 loc) · 902 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
[package]
name = "rocket-multipart"
version = "0.2.1"
edition = "2021"
rust-version = "1.56"
authors = ["Matthew Pomes <[email protected]>"]
description = "Provides a `multipart/mixed` Responder implementation"
repository = "https://github.com/the10thWiz/rocket-multipart"
keywords = ["rocket", "web-server"]
license = "MIT"
[features]
default = ["rand"]
rand = ["dep:rand"]
json = ["dep:serde_json", "dep:serde"]
[dependencies]
memchr = "2.7.4"
rand = { version = "0.8.5", optional = true }
rocket = { version = "0.5.1", default-features = false }
serde = { version = "1.0.203", default-features = false, optional = true, features = ["std"] }
serde_json = { version = "1.0.118", default-features = false, optional = true, features = ["std"] }
thiserror = "1.0.61"
tokio-util = { version = "0.7.11", default-features = false, features = ["codec", "io"] }
[dev-dependencies]
async-stream = "0.3.5"