2020-05-07 21:11:26 +00:00
|
|
|
[package]
|
|
|
|
name = "flexbuffers"
|
2024-05-29 01:44:37 +00:00
|
|
|
version = "24.3.25"
|
2020-05-12 02:46:37 +00:00
|
|
|
authors = ["Casper Neo <cneo@google.com>", "FlatBuffers Maintainers"]
|
2020-05-07 21:11:26 +00:00
|
|
|
edition = "2018"
|
|
|
|
license = "Apache-2.0"
|
2020-05-12 02:46:37 +00:00
|
|
|
description = "Official FlexBuffers Rust runtime library."
|
|
|
|
homepage = "https://google.github.io/flatbuffers/flexbuffers"
|
|
|
|
repository = "https://github.com/google/flatbuffers"
|
|
|
|
keywords = ["flatbuffers", "flexbuffers", "serialization", "zero-copy"]
|
|
|
|
categories = ["encoding", "data-structures", "memory-management"]
|
2020-05-07 21:11:26 +00:00
|
|
|
|
2020-11-13 15:53:01 +00:00
|
|
|
[features]
|
|
|
|
# Sets serde::Serializer::is_human_readable() to true.
|
|
|
|
# The default was changed from true to false in version "0.2.1".
|
|
|
|
# You basically never need this to be true unless writing data for old binaries.
|
|
|
|
serialize_human_readable = []
|
|
|
|
# Sets serde::Deserializer::is_human_readable() to true.
|
|
|
|
# The default was changed from true to false in version "0.2.1".
|
|
|
|
# You basically never need this to be true unless reading data from old binaries.
|
|
|
|
deserialize_human_readable = []
|
|
|
|
|
2020-05-07 21:11:26 +00:00
|
|
|
[dependencies]
|
2021-01-19 18:39:29 +00:00
|
|
|
serde = "1.0.119"
|
|
|
|
serde_derive = "1.0.119"
|
|
|
|
byteorder = "1.4.2"
|
2024-09-30 16:39:38 +00:00
|
|
|
num_enum = "0.5.1"
|
|
|
|
bitflags = "1.2.1"
|