forked from google/flatbuffers
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'rust_support' of github.com:josephDunne/flatbuffers
- Loading branch information
Showing
61 changed files
with
5,147 additions
and
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
target | ||
Cargo.lock |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,25 @@ | ||
[package] | ||
name = "flatbuffers" | ||
version = "0.3.0" | ||
authors = ["Joseph Dunne <jd@lambda.tech>"] | ||
description = "Memory Efficient Serialization Library. Flatbuffers runtime for Rust." | ||
keywords = ["flatbuffers", "serialization", "deserialization"] | ||
readme = "../readme.md" | ||
license = "Apache-2.0" | ||
homepage = "http://google.github.io/flatbuffers/index.html" | ||
repository = "https://github.com/josephDunne/flatbuffers" | ||
|
||
[lib] | ||
name = "flatbuffers" | ||
|
||
[[bin]] | ||
name = "test" | ||
|
||
[dependencies] | ||
byteorder = "0.5.*" | ||
|
||
[features] | ||
default = [] | ||
# Test the idl_gen_rust cpp code. | ||
test_idl_gen = [] | ||
|
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,22 @@ | ||
[package] | ||
name = "flatbuffers_macros" | ||
version = "0.1.0" | ||
authors = ["Joseph Dunne <jd@lambda.tech>"] | ||
license = "Apache-2.0" | ||
description = "Macros for generating flatbuffer objects" | ||
keywords = ["flatbuffers"] | ||
|
||
|
||
[lib] | ||
plugin = true | ||
|
||
[dependencies] | ||
regex = "*" | ||
|
||
[dev-dependencies] | ||
compiletest_rs = "*" | ||
|
||
[dev-dependencies.flatbuffers] | ||
path = "../" | ||
version = ">=0.0" | ||
|
Oops, something went wrong.