multipart-client-stream/Cargo.toml

23 lines
712 B
TOML
Raw Normal View History

2023-07-15 21:27:12 +00:00
[package]
2023-07-16 01:29:02 +00:00
name = "multipart-client-stream"
2023-07-21 01:51:12 +00:00
description = "A simple multipart stream implementation for tokio"
2023-07-15 21:27:12 +00:00
version = "0.1.0"
2023-07-21 01:51:12 +00:00
authors = ["asonix <asonix@asonix.dog>"]
license = "GPL-3.0"
repository = "https://git.asonix.dog/asonix/multipart-client-stream"
2023-07-15 21:27:12 +00:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-07-16 01:29:02 +00:00
bytes = "1"
fastrand = "2.0.0"
2023-07-16 01:29:02 +00:00
futures-core = "0.3"
mime = "0.3"
tokio = { version = "1", default-features = false, features = [ "io-util" ] }
tokio-util = { version = "0.7", default-features = false, features = ["io"] }
[dev-dependencies]
common-multipart-rfc7578 = "0.6.0"
2023-07-16 01:29:02 +00:00
tokio = { version = "1", features = ["full"] }