-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit '6dccd64de51ea960cb6f0d975768c874814b4c75' into HEAD
Update flatbuffers. Relevant merge tasks: * A field got added to reflection.fbs; this had fallout in reflection_generated.h and the logger_test shas. * Resolved merge conflict in rust/flatbuffers/src/lib.rs * Reverted upstream change that made Table rust struct members private. * FlatBufferBuilder Create*Vector calls now include alignment. * nim codegen got added; needed to update to use scoped enums. Main fix that motivated this update is google/flatbuffers#7588 Change-Id: I6bbe5d56846f426fa5f2a82c4f2bc77be2b93bb0 Signed-off-by: James Kuszmaul <[email protected]>
- Loading branch information
Showing
468 changed files
with
19,268 additions
and
7,026 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
""" | ||
@generated | ||
cargo-raze crate build file. | ||
|
||
DO NOT EDIT! Replaced on runs of cargo-raze | ||
""" | ||
|
||
# buildifier: disable=load | ||
load("@bazel_skylib//lib:selects.bzl", "selects") | ||
|
||
# buildifier: disable=load | ||
load( | ||
"@rules_rust//rust:defs.bzl", | ||
"rust_binary", | ||
"rust_library", | ||
"rust_proc_macro", | ||
"rust_test", | ||
) | ||
|
||
package(default_visibility = [ | ||
# Public for visibility by "@raze__crate__version//" targets. | ||
# | ||
# Prefer access through "//third_party/cargo", which limits external | ||
# visibility to explicit Cargo.toml dependencies. | ||
"//visibility:public", | ||
]) | ||
|
||
licenses([ | ||
"notice", # MIT from expression "MIT OR Apache-2.0" | ||
]) | ||
|
||
# Generated Targets | ||
|
||
rust_library( | ||
name = "rustc_version", | ||
srcs = glob(["**/*.rs"]), | ||
crate_features = [ | ||
], | ||
crate_root = "src/lib.rs", | ||
data = [], | ||
edition = "2018", | ||
rustc_flags = [ | ||
"--cap-lints=allow", | ||
], | ||
tags = [ | ||
"cargo-raze", | ||
"crate-name=rustc_version", | ||
"manual", | ||
], | ||
version = "0.4.0", | ||
# buildifier: leave-alone | ||
deps = [ | ||
"@raze__semver__1_0_14//:semver", | ||
], | ||
) | ||
|
||
# Unsupported target "all" with type "test" omitted |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
""" | ||
@generated | ||
cargo-raze crate build file. | ||
|
||
DO NOT EDIT! Replaced on runs of cargo-raze | ||
""" | ||
|
||
# buildifier: disable=load | ||
load("@bazel_skylib//lib:selects.bzl", "selects") | ||
|
||
# buildifier: disable=load | ||
load( | ||
"@rules_rust//rust:defs.bzl", | ||
"rust_binary", | ||
"rust_library", | ||
"rust_proc_macro", | ||
"rust_test", | ||
) | ||
|
||
package(default_visibility = [ | ||
# Public for visibility by "@raze__crate__version//" targets. | ||
# | ||
# Prefer access through "//third_party/cargo", which limits external | ||
# visibility to explicit Cargo.toml dependencies. | ||
"//visibility:public", | ||
]) | ||
|
||
licenses([ | ||
"notice", # MIT from expression "MIT OR Apache-2.0" | ||
]) | ||
|
||
# Generated Targets | ||
# buildifier: disable=out-of-order-load | ||
# buildifier: disable=load-on-top | ||
load( | ||
"@rules_rust//cargo:cargo_build_script.bzl", | ||
"cargo_build_script", | ||
) | ||
|
||
cargo_build_script( | ||
name = "semver_build_script", | ||
srcs = glob(["**/*.rs"]), | ||
build_script_env = { | ||
}, | ||
crate_features = [ | ||
"default", | ||
"std", | ||
], | ||
crate_root = "build.rs", | ||
data = glob(["**"]), | ||
edition = "2018", | ||
rustc_flags = [ | ||
"--cap-lints=allow", | ||
], | ||
tags = [ | ||
"cargo-raze", | ||
"manual", | ||
], | ||
version = "1.0.14", | ||
visibility = ["//visibility:private"], | ||
deps = [ | ||
], | ||
) | ||
|
||
# Unsupported target "parse" with type "bench" omitted | ||
|
||
rust_library( | ||
name = "semver", | ||
srcs = glob(["**/*.rs"]), | ||
crate_features = [ | ||
"default", | ||
"std", | ||
], | ||
crate_root = "src/lib.rs", | ||
data = [], | ||
edition = "2018", | ||
rustc_flags = [ | ||
"--cap-lints=allow", | ||
], | ||
tags = [ | ||
"cargo-raze", | ||
"crate-name=semver", | ||
"manual", | ||
], | ||
version = "1.0.14", | ||
# buildifier: leave-alone | ||
deps = [ | ||
":semver_build_script", | ||
], | ||
) | ||
|
||
# Unsupported target "test_autotrait" with type "test" omitted | ||
|
||
# Unsupported target "test_identifier" with type "test" omitted | ||
|
||
# Unsupported target "test_version" with type "test" omitted | ||
|
||
# Unsupported target "test_version_req" with type "test" omitted |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.