[package] name = "flatbuffers" version = "2.1.0" edition = "2018" authors = ["Robert Winslow ", "FlatBuffers Maintainers"] license = "Apache-2.0" description = "Official FlatBuffers Rust runtime library." homepage = "https://google.github.io/flatbuffers/" repository = "https://github.com/google/flatbuffers" keywords = ["flatbuffers", "serialization", "zero-copy"] categories = ["encoding", "data-structures", "memory-management"] rust = "1.51" [features] default = ["thiserror"] no_std = ["core2", "thiserror_core2"] serialize = ["serde"] [dependencies] smallvec = "1.6.1" bitflags = "1.2.1" serde = { version = "1.0", optional = true } thiserror = { version = "1.0.23", optional = true } core2 = { version = "0.3.3", optional = true } thiserror_core2 = { git = "https://github.com/antmicro/thiserror-core2.git", branch = "remaining-errors", optional = true }