-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
44 lines (37 loc) · 1.02 KB
/
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
37
38
39
40
41
42
43
44
[package]
name = "futures_codec"
edition = "2018"
version = "0.4.1"
authors = ["Matt Hunzinger <[email protected]>"]
description = "Utilities for encoding and decoding frames using `async/await`"
license = "MIT"
readme = "README.md"
repository = "https://github.com/matthunz/futures-codec"
homepage = "https://github.com/matthunz/futures-codec"
documentation = "https://docs.rs/crate/futures_codec"
keywords = ["future", "futures", "async", "codec"]
categories = ["asynchronous", "network-programming"]
[features]
default = []
json = [ "serde", "serde_json" ]
cbor = [ "serde", "serde_cbor" ]
[dependencies]
bytes = "0.5.4"
futures-sink = "0.3.7"
futures-util = { version = "0.3.7", features = ["io"] }
memchr = "2.3.4"
pin-project-lite = "0.1.11"
[dev-dependencies]
futures = "0.3.7"
[dependencies.serde]
version = '1.0.113'
optional = true
features = [ "derive" ]
[dependencies.serde_json]
version = '1.0.55'
optional = true
[dependencies.serde_cbor]
version = '0.11.1'
optional = true
[package.metadata.docs.rs]
all-features = true