├── .devcontainer └── devcontainer.json ├── .github └── workflows │ ├── mdbook.yml │ └── rust.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── book ├── .gitignore ├── book.toml └── src │ ├── SUMMARY.md │ ├── api.md │ ├── axioms.md │ ├── chapter_1.md │ ├── idl.md │ ├── intro.md │ ├── mapping │ ├── c.md │ ├── cpp.md │ ├── java.md │ └── wit.md │ ├── public-interface.md │ ├── reference.md │ ├── related_work.md │ ├── stdlib.md │ └── tutorial.md ├── crates ├── cargo-gluegun │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── main.rs ├── gluegun-core │ ├── Cargo.toml │ └── src │ │ ├── cli.rs │ │ ├── codegen.rs │ │ ├── codegen │ │ ├── code_writer.rs │ │ ├── helper_command.rs │ │ ├── library_crate.rs │ │ └── separator.rs │ │ └── lib.rs ├── gluegun-dummy │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── gluegun-idl │ ├── Cargo.toml │ └── src │ │ ├── error.rs │ │ ├── ir_items.rs │ │ ├── ir_types.rs │ │ ├── lib.rs │ │ ├── parse.rs │ │ ├── parse │ │ ├── known_rust.rs │ │ ├── modifier.rs │ │ ├── pass1.rs │ │ ├── pass2.rs │ │ └── util.rs │ │ └── span.rs ├── gluegun-java-util │ ├── Cargo.toml │ └── src │ │ ├── build_rs.rs │ │ ├── lib.rs │ │ ├── main_rs.rs │ │ └── util.rs ├── gluegun-java │ ├── Cargo.toml │ └── src │ │ ├── java_gen.rs │ │ ├── main.rs │ │ ├── rs_gen.rs │ │ └── util.rs ├── gluegun-py │ ├── Cargo.toml │ └── src │ │ ├── main.rs │ │ └── rs_gen.rs ├── gluegun-test-harness │ ├── Cargo.toml │ └── src │ │ ├── idl_test.rs │ │ ├── lib.rs │ │ └── test_definition.rs └── gluegun-wasm │ ├── Cargo.toml │ └── src │ ├── main.rs │ └── rs_gen.rs ├── demos └── hello_world │ ├── Cargo.lock │ ├── Cargo.toml │ ├── src │ └── lib.rs │ └── target │ ├── .rustc_info.json │ ├── CACHEDIR.TAG │ └── debug │ ├── .cargo-lock │ ├── .fingerprint │ └── hello_world-e59cd56ce49e3e1d │ │ ├── dep-lib-hello_world │ │ ├── invoked.timestamp │ │ ├── lib-hello_world │ │ └── lib-hello_world.json │ ├── deps │ ├── hello_world-e59cd56ce49e3e1d.d │ ├── libhello_world-e59cd56ce49e3e1d.rlib │ └── libhello_world-e59cd56ce49e3e1d.rmeta │ ├── incremental │ └── hello_world-1irtm3ahvuzwf │ │ ├── s-h2zw2gowxv-0bg27di-4cvp4rw8tmrxkc8qwk7fxqz7n │ │ ├── 8mcvbgak86ic9o1dikxfyt3v4.o │ │ ├── dep-graph.bin │ │ ├── query-cache.bin │ │ └── work-products.bin │ │ └── s-h2zw2gowxv-0bg27di.lock │ ├── libhello_world.d │ └── libhello_world.rlib ├── idl-tests ├── .gitignore ├── README.md ├── character.idl ├── character.rs ├── greetings.idl ├── greetings.rs ├── hello_world.idl └── hello_world.rs ├── src └── lib.rs └── tests └── idl_tests.rs /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/mdbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/.github/workflows/mdbook.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/README.md -------------------------------------------------------------------------------- /book/.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | -------------------------------------------------------------------------------- /book/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/book/book.toml -------------------------------------------------------------------------------- /book/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/book/src/SUMMARY.md -------------------------------------------------------------------------------- /book/src/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/book/src/api.md -------------------------------------------------------------------------------- /book/src/axioms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/book/src/axioms.md -------------------------------------------------------------------------------- /book/src/chapter_1.md: -------------------------------------------------------------------------------- 1 | # Chapter 1 2 | -------------------------------------------------------------------------------- /book/src/idl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/book/src/idl.md -------------------------------------------------------------------------------- /book/src/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/book/src/intro.md -------------------------------------------------------------------------------- /book/src/mapping/c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/book/src/mapping/c.md -------------------------------------------------------------------------------- /book/src/mapping/cpp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/book/src/mapping/cpp.md -------------------------------------------------------------------------------- /book/src/mapping/java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/book/src/mapping/java.md -------------------------------------------------------------------------------- /book/src/mapping/wit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/book/src/mapping/wit.md -------------------------------------------------------------------------------- /book/src/public-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/book/src/public-interface.md -------------------------------------------------------------------------------- /book/src/reference.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | -------------------------------------------------------------------------------- /book/src/related_work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/book/src/related_work.md -------------------------------------------------------------------------------- /book/src/stdlib.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /book/src/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/book/src/tutorial.md -------------------------------------------------------------------------------- /crates/cargo-gluegun/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/cargo-gluegun/Cargo.toml -------------------------------------------------------------------------------- /crates/cargo-gluegun/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/cargo-gluegun/src/lib.rs -------------------------------------------------------------------------------- /crates/cargo-gluegun/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/cargo-gluegun/src/main.rs -------------------------------------------------------------------------------- /crates/gluegun-core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-core/Cargo.toml -------------------------------------------------------------------------------- /crates/gluegun-core/src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-core/src/cli.rs -------------------------------------------------------------------------------- /crates/gluegun-core/src/codegen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-core/src/codegen.rs -------------------------------------------------------------------------------- /crates/gluegun-core/src/codegen/code_writer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-core/src/codegen/code_writer.rs -------------------------------------------------------------------------------- /crates/gluegun-core/src/codegen/helper_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-core/src/codegen/helper_command.rs -------------------------------------------------------------------------------- /crates/gluegun-core/src/codegen/library_crate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-core/src/codegen/library_crate.rs -------------------------------------------------------------------------------- /crates/gluegun-core/src/codegen/separator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-core/src/codegen/separator.rs -------------------------------------------------------------------------------- /crates/gluegun-core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-core/src/lib.rs -------------------------------------------------------------------------------- /crates/gluegun-dummy/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-dummy/Cargo.toml -------------------------------------------------------------------------------- /crates/gluegun-dummy/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-dummy/src/main.rs -------------------------------------------------------------------------------- /crates/gluegun-idl/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-idl/Cargo.toml -------------------------------------------------------------------------------- /crates/gluegun-idl/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-idl/src/error.rs -------------------------------------------------------------------------------- /crates/gluegun-idl/src/ir_items.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-idl/src/ir_items.rs -------------------------------------------------------------------------------- /crates/gluegun-idl/src/ir_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-idl/src/ir_types.rs -------------------------------------------------------------------------------- /crates/gluegun-idl/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-idl/src/lib.rs -------------------------------------------------------------------------------- /crates/gluegun-idl/src/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-idl/src/parse.rs -------------------------------------------------------------------------------- /crates/gluegun-idl/src/parse/known_rust.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-idl/src/parse/known_rust.rs -------------------------------------------------------------------------------- /crates/gluegun-idl/src/parse/modifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-idl/src/parse/modifier.rs -------------------------------------------------------------------------------- /crates/gluegun-idl/src/parse/pass1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-idl/src/parse/pass1.rs -------------------------------------------------------------------------------- /crates/gluegun-idl/src/parse/pass2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-idl/src/parse/pass2.rs -------------------------------------------------------------------------------- /crates/gluegun-idl/src/parse/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-idl/src/parse/util.rs -------------------------------------------------------------------------------- /crates/gluegun-idl/src/span.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-idl/src/span.rs -------------------------------------------------------------------------------- /crates/gluegun-java-util/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-java-util/Cargo.toml -------------------------------------------------------------------------------- /crates/gluegun-java-util/src/build_rs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-java-util/src/build_rs.rs -------------------------------------------------------------------------------- /crates/gluegun-java-util/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-java-util/src/lib.rs -------------------------------------------------------------------------------- /crates/gluegun-java-util/src/main_rs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-java-util/src/main_rs.rs -------------------------------------------------------------------------------- /crates/gluegun-java-util/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-java-util/src/util.rs -------------------------------------------------------------------------------- /crates/gluegun-java/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-java/Cargo.toml -------------------------------------------------------------------------------- /crates/gluegun-java/src/java_gen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-java/src/java_gen.rs -------------------------------------------------------------------------------- /crates/gluegun-java/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-java/src/main.rs -------------------------------------------------------------------------------- /crates/gluegun-java/src/rs_gen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-java/src/rs_gen.rs -------------------------------------------------------------------------------- /crates/gluegun-java/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-java/src/util.rs -------------------------------------------------------------------------------- /crates/gluegun-py/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-py/Cargo.toml -------------------------------------------------------------------------------- /crates/gluegun-py/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-py/src/main.rs -------------------------------------------------------------------------------- /crates/gluegun-py/src/rs_gen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-py/src/rs_gen.rs -------------------------------------------------------------------------------- /crates/gluegun-test-harness/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-test-harness/Cargo.toml -------------------------------------------------------------------------------- /crates/gluegun-test-harness/src/idl_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-test-harness/src/idl_test.rs -------------------------------------------------------------------------------- /crates/gluegun-test-harness/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-test-harness/src/lib.rs -------------------------------------------------------------------------------- /crates/gluegun-test-harness/src/test_definition.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-test-harness/src/test_definition.rs -------------------------------------------------------------------------------- /crates/gluegun-wasm/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-wasm/Cargo.toml -------------------------------------------------------------------------------- /crates/gluegun-wasm/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-wasm/src/main.rs -------------------------------------------------------------------------------- /crates/gluegun-wasm/src/rs_gen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/crates/gluegun-wasm/src/rs_gen.rs -------------------------------------------------------------------------------- /demos/hello_world/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/demos/hello_world/Cargo.lock -------------------------------------------------------------------------------- /demos/hello_world/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/demos/hello_world/Cargo.toml -------------------------------------------------------------------------------- /demos/hello_world/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/demos/hello_world/src/lib.rs -------------------------------------------------------------------------------- /demos/hello_world/target/.rustc_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/demos/hello_world/target/.rustc_info.json -------------------------------------------------------------------------------- /demos/hello_world/target/CACHEDIR.TAG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/demos/hello_world/target/CACHEDIR.TAG -------------------------------------------------------------------------------- /demos/hello_world/target/debug/.cargo-lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demos/hello_world/target/debug/.fingerprint/hello_world-e59cd56ce49e3e1d/dep-lib-hello_world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/demos/hello_world/target/debug/.fingerprint/hello_world-e59cd56ce49e3e1d/dep-lib-hello_world -------------------------------------------------------------------------------- /demos/hello_world/target/debug/.fingerprint/hello_world-e59cd56ce49e3e1d/invoked.timestamp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/demos/hello_world/target/debug/.fingerprint/hello_world-e59cd56ce49e3e1d/invoked.timestamp -------------------------------------------------------------------------------- /demos/hello_world/target/debug/.fingerprint/hello_world-e59cd56ce49e3e1d/lib-hello_world: -------------------------------------------------------------------------------- 1 | 0a16e23f0df21798 -------------------------------------------------------------------------------- /demos/hello_world/target/debug/.fingerprint/hello_world-e59cd56ce49e3e1d/lib-hello_world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/demos/hello_world/target/debug/.fingerprint/hello_world-e59cd56ce49e3e1d/lib-hello_world.json -------------------------------------------------------------------------------- /demos/hello_world/target/debug/deps/hello_world-e59cd56ce49e3e1d.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/demos/hello_world/target/debug/deps/hello_world-e59cd56ce49e3e1d.d -------------------------------------------------------------------------------- /demos/hello_world/target/debug/deps/libhello_world-e59cd56ce49e3e1d.rlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/demos/hello_world/target/debug/deps/libhello_world-e59cd56ce49e3e1d.rlib -------------------------------------------------------------------------------- /demos/hello_world/target/debug/deps/libhello_world-e59cd56ce49e3e1d.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/demos/hello_world/target/debug/deps/libhello_world-e59cd56ce49e3e1d.rmeta -------------------------------------------------------------------------------- /demos/hello_world/target/debug/incremental/hello_world-1irtm3ahvuzwf/s-h2zw2gowxv-0bg27di-4cvp4rw8tmrxkc8qwk7fxqz7n/8mcvbgak86ic9o1dikxfyt3v4.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/demos/hello_world/target/debug/incremental/hello_world-1irtm3ahvuzwf/s-h2zw2gowxv-0bg27di-4cvp4rw8tmrxkc8qwk7fxqz7n/8mcvbgak86ic9o1dikxfyt3v4.o -------------------------------------------------------------------------------- /demos/hello_world/target/debug/incremental/hello_world-1irtm3ahvuzwf/s-h2zw2gowxv-0bg27di-4cvp4rw8tmrxkc8qwk7fxqz7n/dep-graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/demos/hello_world/target/debug/incremental/hello_world-1irtm3ahvuzwf/s-h2zw2gowxv-0bg27di-4cvp4rw8tmrxkc8qwk7fxqz7n/dep-graph.bin -------------------------------------------------------------------------------- /demos/hello_world/target/debug/incremental/hello_world-1irtm3ahvuzwf/s-h2zw2gowxv-0bg27di-4cvp4rw8tmrxkc8qwk7fxqz7n/query-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/demos/hello_world/target/debug/incremental/hello_world-1irtm3ahvuzwf/s-h2zw2gowxv-0bg27di-4cvp4rw8tmrxkc8qwk7fxqz7n/query-cache.bin -------------------------------------------------------------------------------- /demos/hello_world/target/debug/incremental/hello_world-1irtm3ahvuzwf/s-h2zw2gowxv-0bg27di-4cvp4rw8tmrxkc8qwk7fxqz7n/work-products.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/demos/hello_world/target/debug/incremental/hello_world-1irtm3ahvuzwf/s-h2zw2gowxv-0bg27di-4cvp4rw8tmrxkc8qwk7fxqz7n/work-products.bin -------------------------------------------------------------------------------- /demos/hello_world/target/debug/incremental/hello_world-1irtm3ahvuzwf/s-h2zw2gowxv-0bg27di.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demos/hello_world/target/debug/libhello_world.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/demos/hello_world/target/debug/libhello_world.d -------------------------------------------------------------------------------- /demos/hello_world/target/debug/libhello_world.rlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/demos/hello_world/target/debug/libhello_world.rlib -------------------------------------------------------------------------------- /idl-tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.err -------------------------------------------------------------------------------- /idl-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/idl-tests/README.md -------------------------------------------------------------------------------- /idl-tests/character.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/idl-tests/character.idl -------------------------------------------------------------------------------- /idl-tests/character.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/idl-tests/character.rs -------------------------------------------------------------------------------- /idl-tests/greetings.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/idl-tests/greetings.idl -------------------------------------------------------------------------------- /idl-tests/greetings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/idl-tests/greetings.rs -------------------------------------------------------------------------------- /idl-tests/hello_world.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/idl-tests/hello_world.idl -------------------------------------------------------------------------------- /idl-tests/hello_world.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/idl-tests/hello_world.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/idl_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gluegun-rs/gluegun/HEAD/tests/idl_tests.rs --------------------------------------------------------------------------------