mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-08 06:05:17 +00:00
* Fix doc comment warnings
Can't use doc comment "///" syntax on macros, that generates the following warning:
warning: unused doc comment
--> src\flexbuffer_type.rs:236:5
|
236 | /// returns true if and only if the flexbuffer type is `VectorFloat4`.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macros
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
So switched to just use ordinary "//" comments on these to be warning free
* Upgrade num_enum 0.4.1 -> 0.5.0
* Remove unused and non-working usage of test crates
* Remove usage of abandoned debug_stub_derive crate
Which brought in old pre-v1 syn and quote crates.
This replaces it with just manual Debug trait implementation instead for the 2 cases
20 lines
581 B
TOML
20 lines
581 B
TOML
[package]
|
|
name = "flexbuffers"
|
|
version = "0.1.0"
|
|
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"]
|
|
|
|
[dependencies]
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
byteorder = "1.3.2"
|
|
num_enum = "0.5.0"
|
|
bitflags = "1.2.1"
|
|
|