-
Notifications
You must be signed in to change notification settings - Fork 37
/
Cargo.toml
32 lines (27 loc) · 830 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
28
29
30
31
32
[package]
name = "serde_bytes"
version = "0.11.15"
authors = ["David Tolnay <[email protected]>"]
categories = ["encoding", "no-std", "no-std::no-alloc"]
description = "Optimized handling of `&[u8]` and `Vec<u8>` for Serde"
documentation = "https://docs.rs/serde_bytes"
edition = "2018"
keywords = ["serde", "serialization", "no_std", "bytes"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/serde-rs/bytes"
rust-version = "1.53"
[features]
default = ["std"]
std = ["serde/std"]
alloc = ["serde/alloc"]
[dependencies]
serde = { version = "1.0.166", default-features = false }
[dev-dependencies]
bincode = "1.3.3"
serde_derive = "1.0.166"
serde_test = "1.0.166"
[lib]
doc-scrape-examples = false
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--generate-link-to-definition"]