├── .gitignore ├── .travis.yml ├── Cargo.toml ├── README.md ├── src ├── lib.rs └── schema.json └── tests └── test.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marwes/debugserver-types/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marwes/debugserver-types/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marwes/debugserver-types/HEAD/README.md -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marwes/debugserver-types/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marwes/debugserver-types/HEAD/src/schema.json -------------------------------------------------------------------------------- /tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marwes/debugserver-types/HEAD/tests/test.rs --------------------------------------------------------------------------------