├── .envrc ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── flake.lock ├── flake.nix ├── libxml2.zig ├── nix ├── devshell.nix ├── overlay.nix └── package.nix ├── override ├── config │ ├── posix │ │ └── config.h │ └── win32 │ │ └── config.h └── include │ └── libxml │ └── xmlversion.h ├── shell.nix └── test ├── basic.xml └── basic.zig /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-libxml2/HEAD/.envrc -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-libxml2/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | zig-cache/ 2 | zig-out/ 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-libxml2/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-libxml2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-libxml2/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-libxml2/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-libxml2/HEAD/flake.nix -------------------------------------------------------------------------------- /libxml2.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-libxml2/HEAD/libxml2.zig -------------------------------------------------------------------------------- /nix/devshell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-libxml2/HEAD/nix/devshell.nix -------------------------------------------------------------------------------- /nix/overlay.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-libxml2/HEAD/nix/overlay.nix -------------------------------------------------------------------------------- /nix/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-libxml2/HEAD/nix/package.nix -------------------------------------------------------------------------------- /override/config/posix/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-libxml2/HEAD/override/config/posix/config.h -------------------------------------------------------------------------------- /override/config/win32/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-libxml2/HEAD/override/config/win32/config.h -------------------------------------------------------------------------------- /override/include/libxml/xmlversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-libxml2/HEAD/override/include/libxml/xmlversion.h -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-libxml2/HEAD/shell.nix -------------------------------------------------------------------------------- /test/basic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-libxml2/HEAD/test/basic.xml -------------------------------------------------------------------------------- /test/basic.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchellh/zig-libxml2/HEAD/test/basic.zig --------------------------------------------------------------------------------