diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-09-02 01:58:23 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-09-03 10:45:58 -0400 |
commit | 4ccae957fbd397b4ca7aa68ef1ae54a9ce953d9e (patch) | |
tree | cc707c2342cd48c498d816fa6e453885a39c9fc2 /build_extra/rust/BUILD.gn | |
parent | 787832c68ec2a735717eb32c295a3aa570294ae2 (diff) |
Upgrade flatbuffers
Diffstat (limited to 'build_extra/rust/BUILD.gn')
-rw-r--r-- | build_extra/rust/BUILD.gn | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/build_extra/rust/BUILD.gn b/build_extra/rust/BUILD.gn index 382f9a90b..f75b96301 100644 --- a/build_extra/rust/BUILD.gn +++ b/build_extra/rust/BUILD.gn @@ -808,3 +808,19 @@ rust_crate("scoped_tls") { ":untrusted", ] } + +rust_crate("smallvec") { + source_root = "$registry_github/smallvec-0.6.5/lib.rs" + extern = [ ":unreachable" ] + features = [ "std" ] +} + +rust_crate("unreachable") { + source_root = "$registry_github/unreachable-1.0.0/src/lib.rs" + extern = [ ":void" ] +} + +rust_crate("void") { + source_root = "$registry_github/void-1.0.2/src/lib.rs" + features = [ "default" ] +} |