File: Cargo.toml

package info (click to toggle)
golang-github-google-flatbuffers 24.12.23-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie
  • size: 17,704 kB
  • sloc: cpp: 53,217; python: 6,900; cs: 5,566; java: 4,370; php: 1,460; javascript: 1,061; xml: 1,016; sh: 886; makefile: 13
file content (28 lines) | stat: -rw-r--r-- 1,070 bytes parent folder | download
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
[package]
name = "flexbuffers"
version = "24.12.23"
authors = ["Casper Neo <cneo@google.com>", "FlatBuffers Maintainers"]
edition = "2018"
license = "Apache-2.0"
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"]

[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 = []

[dependencies]
serde = "1.0.119"
serde_derive = "1.0.119"
byteorder = "1.4.2"
num_enum = "0.5.1"
bitflags = "1.2.1"