├── .github ├── dependabot.yml └── workflows │ └── main.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── crabler_derive ├── .gitignore ├── Cargo.toml ├── LICENSE ├── Makefile ├── shell.nix └── src │ └── lib.rs ├── shell.nix ├── src ├── errors.rs ├── lib.rs └── opts.rs └── tests ├── readme.rs └── simple_roundtrip_tests.rs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonzih/crabler/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonzih/crabler/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonzih/crabler/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonzih/crabler/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonzih/crabler/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonzih/crabler/HEAD/README.md -------------------------------------------------------------------------------- /crabler_derive/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /crabler_derive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonzih/crabler/HEAD/crabler_derive/Cargo.toml -------------------------------------------------------------------------------- /crabler_derive/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonzih/crabler/HEAD/crabler_derive/LICENSE -------------------------------------------------------------------------------- /crabler_derive/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonzih/crabler/HEAD/crabler_derive/Makefile -------------------------------------------------------------------------------- /crabler_derive/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonzih/crabler/HEAD/crabler_derive/shell.nix -------------------------------------------------------------------------------- /crabler_derive/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonzih/crabler/HEAD/crabler_derive/src/lib.rs -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonzih/crabler/HEAD/shell.nix -------------------------------------------------------------------------------- /src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonzih/crabler/HEAD/src/errors.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonzih/crabler/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/opts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonzih/crabler/HEAD/src/opts.rs -------------------------------------------------------------------------------- /tests/readme.rs: -------------------------------------------------------------------------------- 1 | include!(concat!(env!("OUT_DIR"), "/skeptic-tests.rs")); 2 | -------------------------------------------------------------------------------- /tests/simple_roundtrip_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonzih/crabler/HEAD/tests/simple_roundtrip_tests.rs --------------------------------------------------------------------------------