├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── lib ├── .gitignore ├── hello.h └── hello │ ├── .gitignore │ ├── Cargo.toml │ └── src │ └── lib.rs ├── main_dynamic.go └── main_static.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediremi/rust-plus-golang/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediremi/rust-plus-golang/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediremi/rust-plus-golang/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediremi/rust-plus-golang/HEAD/README.md -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediremi/rust-plus-golang/HEAD/lib/.gitignore -------------------------------------------------------------------------------- /lib/hello.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediremi/rust-plus-golang/HEAD/lib/hello.h -------------------------------------------------------------------------------- /lib/hello/.gitignore: -------------------------------------------------------------------------------- 1 | Cargo.lock 2 | target 3 | -------------------------------------------------------------------------------- /lib/hello/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediremi/rust-plus-golang/HEAD/lib/hello/Cargo.toml -------------------------------------------------------------------------------- /lib/hello/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediremi/rust-plus-golang/HEAD/lib/hello/src/lib.rs -------------------------------------------------------------------------------- /main_dynamic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediremi/rust-plus-golang/HEAD/main_dynamic.go -------------------------------------------------------------------------------- /main_static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediremi/rust-plus-golang/HEAD/main_static.go --------------------------------------------------------------------------------