xmlem 0.2.3

XML DOM implementation with pretty printing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
let
  moz_overlay = import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz);
  pkgs = import <nixpkgs> { overlays = [ moz_overlay ]; };
  rust = pkgs.latest.rustChannels.stable.rust.override { extensions = [ "clippy-preview" "rustfmt-preview" ]; };
in
  with pkgs;

mkShell {
  buildInputs = with pkgs; [
    rust
  ];
}