blob: 44737a08e96b587b977221f3126889fbf8a07e15 [file] [log] [blame]
Austin Schuh272c6132020-11-14 16:37:52 -08001[package]
2name = "flexbuffers"
3version = "0.2.1"
4authors = ["Casper Neo <cneo@google.com>", "FlatBuffers Maintainers"]
5edition = "2018"
6license = "Apache-2.0"
7description = "Official FlexBuffers Rust runtime library."
8homepage = "https://google.github.io/flatbuffers/flexbuffers"
9repository = "https://github.com/google/flatbuffers"
10keywords = ["flatbuffers", "flexbuffers", "serialization", "zero-copy"]
11categories = ["encoding", "data-structures", "memory-management"]
12
13[features]
14# Sets serde::Serializer::is_human_readable() to true.
15# The default was changed from true to false in version "0.2.1".
16# You basically never need this to be true unless writing data for old binaries.
17serialize_human_readable = []
18# Sets serde::Deserializer::is_human_readable() to true.
19# The default was changed from true to false in version "0.2.1".
20# You basically never need this to be true unless reading data from old binaries.
21deserialize_human_readable = []
22
23
24[dependencies]
25serde = "1.0"
26serde_derive = "1.0"
27byteorder = "1.3.2"
28num_enum = "0.5.0"
29bitflags = "1.2.1"