27 releases

new 0.1.69 May 20, 2025
0.1.60 Mar 11, 2025
0.1.52 Nov 1, 2024
0.1.5 Jul 30, 2024
0.0.3 Oct 30, 2023

#1287 in Database interfaces

Download history 1/week @ 2025-02-06 323/week @ 2025-02-13 2/week @ 2025-02-27 92/week @ 2025-03-06 47/week @ 2025-03-13 3/week @ 2025-03-20 5/week @ 2025-03-27 7/week @ 2025-04-03 3/week @ 2025-04-10 14/week @ 2025-04-17 13/week @ 2025-04-24 18/week @ 2025-05-01 11/week @ 2025-05-08 65/week @ 2025-05-15

109 downloads per month
Used in 9 crates (7 directly)

MIT/Apache

720KB
19K SLoC

ShEx compact syntax

This module contains a compact syntax parser and serializer for ShEx.


lib.rs:

ShEx compact syntax parser

Example


use shex_ast::{Schema, Shape, ShapeExpr, ShapeExprLabel};
use shex_compact::ShExParser;

let str = r#"prefix : <http://example.org/>
             :S {}
            "#;

let schema = ShExParser::parse(str, None).unwrap();
let mut expected = Schema::new();
expected.add_prefix("", &IriS::new_unchecked("http://example.org/"));
expected.add_shape(
  ShapeExprLabel::iri_unchecked("http://example.org/S"),
  ShapeExpr::empty_shape(),
  false
);
assert_eq!(schema,expected)

Dependencies

~16–29MB
~426K SLoC