blob: e4fa6fa54aec9a6b3bc5a4029b41be5e5a5f1986 [file] [log] [blame]
Austin Schuh272c6132020-11-14 16:37:52 -08001[package]
2name = "flexbuffers"
James Kuszmaul8e62b022022-03-22 09:33:25 -07003version = "2.0.0"
Austin Schuh272c6132020-11-14 16:37:52 -08004authors = ["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
Austin Schuh272c6132020-11-14 16:37:52 -080023[dependencies]
James Kuszmaul8e62b022022-03-22 09:33:25 -070024serde = "1.0.119"
25serde_derive = "1.0.119"
26byteorder = "1.4.2"
27num_enum = "0.5.1"
Austin Schuh272c6132020-11-14 16:37:52 -080028bitflags = "1.2.1"