Austin Schuh | 272c613 | 2020-11-14 16:37:52 -0800 | [diff] [blame] | 1 | [package] |
| 2 | name = "flexbuffers" |
James Kuszmaul | 8e62b02 | 2022-03-22 09:33:25 -0700 | [diff] [blame] | 3 | version = "2.0.0" |
Austin Schuh | 272c613 | 2020-11-14 16:37:52 -0800 | [diff] [blame] | 4 | authors = ["Casper Neo <cneo@google.com>", "FlatBuffers Maintainers"] |
| 5 | edition = "2018" |
| 6 | license = "Apache-2.0" |
| 7 | description = "Official FlexBuffers Rust runtime library." |
| 8 | homepage = "https://google.github.io/flatbuffers/flexbuffers" |
| 9 | repository = "https://github.com/google/flatbuffers" |
| 10 | keywords = ["flatbuffers", "flexbuffers", "serialization", "zero-copy"] |
| 11 | categories = ["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. |
| 17 | serialize_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. |
| 21 | deserialize_human_readable = [] |
| 22 | |
Austin Schuh | 272c613 | 2020-11-14 16:37:52 -0800 | [diff] [blame] | 23 | [dependencies] |
James Kuszmaul | 8e62b02 | 2022-03-22 09:33:25 -0700 | [diff] [blame] | 24 | serde = "1.0.119" |
| 25 | serde_derive = "1.0.119" |
| 26 | byteorder = "1.4.2" |
| 27 | num_enum = "0.5.1" |
Austin Schuh | 272c613 | 2020-11-14 16:37:52 -0800 | [diff] [blame] | 28 | bitflags = "1.2.1" |