xrusty 0.3.0

Command-line application to parse documents and transform using χrust
<!-- A security policy that does not allow access to any external resources -->
<xsp:security
    xmlns:xsp="https://gitlab.gnome.org/World/Rust/markup-rs/xrusty/security"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
>
  <xsp:policy name="default">
    <xsp:template domain="resources" name="get">
      <xsl:param name="url" />
      <xsl:sequence select="false()" />
    </xsp:template>
    <!--<xsp:template domain="resources" name="post">
      <xsl:param name="url"/>
      <xsl:sequence select="false()"/>
    </xsp:template>-->
    <xsp:value
            domain="resources"
            name="post"
        /> <!-- effective boolean value is false -->
    <xsp:value
            domain="resources"
            name="put"
        >no</xsp:value> <!-- 0, no, false map to false(); 1, yes, true map to true() -->
    <xsp:value domain="xml" name="entity-size-max">1024KB</xsp:feature>
    <xsp:value domain="xml" name="entity-depth-max">1024</xsp:feature>
    <xsp:value domain="transform" name="recursion-limit-max">1024</xsp:feature>
  </xsp:policy>
</xsp:security>