├── .flake8 ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── examples └── python │ ├── Makefile │ ├── README.md │ ├── cbindgen.toml │ ├── native.h │ ├── rust │ ├── Cargo.toml │ └── src │ │ └── lib.rs │ ├── setup.py │ ├── shippai_example │ └── __init__.py │ └── tests │ └── test_basic.py ├── python ├── README.rst ├── setup.cfg ├── setup.py ├── shippai │ └── __init__.py └── tests │ └── test_core.py └── rust ├── .gitignore ├── Cargo.toml ├── README.md ├── shippai_derive ├── Cargo.toml └── src │ └── lib.rs └── src └── lib.rs /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = .eggs, build/, _native* 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/shippai/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/shippai/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/shippai/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/shippai/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/shippai/HEAD/README.md -------------------------------------------------------------------------------- /examples/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/shippai/HEAD/examples/python/Makefile -------------------------------------------------------------------------------- /examples/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/shippai/HEAD/examples/python/README.md -------------------------------------------------------------------------------- /examples/python/cbindgen.toml: -------------------------------------------------------------------------------- 1 | language = "C" 2 | 3 | [parse] 4 | expand = ["shippai-example"] 5 | -------------------------------------------------------------------------------- /examples/python/native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/shippai/HEAD/examples/python/native.h -------------------------------------------------------------------------------- /examples/python/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/shippai/HEAD/examples/python/rust/Cargo.toml -------------------------------------------------------------------------------- /examples/python/rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/shippai/HEAD/examples/python/rust/src/lib.rs -------------------------------------------------------------------------------- /examples/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/shippai/HEAD/examples/python/setup.py -------------------------------------------------------------------------------- /examples/python/shippai_example/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/shippai/HEAD/examples/python/shippai_example/__init__.py -------------------------------------------------------------------------------- /examples/python/tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/shippai/HEAD/examples/python/tests/test_basic.py -------------------------------------------------------------------------------- /python/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/shippai/HEAD/python/README.rst -------------------------------------------------------------------------------- /python/setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/shippai/HEAD/python/setup.py -------------------------------------------------------------------------------- /python/shippai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/shippai/HEAD/python/shippai/__init__.py -------------------------------------------------------------------------------- /python/tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/shippai/HEAD/python/tests/test_core.py -------------------------------------------------------------------------------- /rust/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | target/ 3 | **/*.rs.bk 4 | Cargo.lock 5 | -------------------------------------------------------------------------------- /rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/shippai/HEAD/rust/Cargo.toml -------------------------------------------------------------------------------- /rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/shippai/HEAD/rust/README.md -------------------------------------------------------------------------------- /rust/shippai_derive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/shippai/HEAD/rust/shippai_derive/Cargo.toml -------------------------------------------------------------------------------- /rust/shippai_derive/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/shippai/HEAD/rust/shippai_derive/src/lib.rs -------------------------------------------------------------------------------- /rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untitaker/shippai/HEAD/rust/src/lib.rs --------------------------------------------------------------------------------