pyshifty 0.0.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyshifty-0.0.5/Cargo.lock +4210 -0
- pyshifty-0.0.5/Cargo.toml +33 -0
- pyshifty-0.0.5/PKG-INFO +106 -0
- pyshifty-0.0.5/README.md +92 -0
- pyshifty-0.0.5/lib/Cargo.toml +34 -0
- pyshifty-0.0.5/lib/README.md +270 -0
- pyshifty-0.0.5/lib/build.rs +204 -0
- pyshifty-0.0.5/lib/src/backend.rs +185 -0
- pyshifty-0.0.5/lib/src/bin/dump.rs +31 -0
- pyshifty-0.0.5/lib/src/bin/isomorphic.rs +56 -0
- pyshifty-0.0.5/lib/src/canonicalization.rs +692 -0
- pyshifty-0.0.5/lib/src/context/graphviz.rs +300 -0
- pyshifty-0.0.5/lib/src/context/ids.rs +82 -0
- pyshifty-0.0.5/lib/src/context/mod.rs +13 -0
- pyshifty-0.0.5/lib/src/context/model.rs +472 -0
- pyshifty-0.0.5/lib/src/context/validation.rs +456 -0
- pyshifty-0.0.5/lib/src/inference/mod.rs +978 -0
- pyshifty-0.0.5/lib/src/ir.rs +86 -0
- pyshifty-0.0.5/lib/src/ir_cache.rs +32 -0
- pyshifty-0.0.5/lib/src/lib.rs +1259 -0
- pyshifty-0.0.5/lib/src/model/components/mod.rs +2 -0
- pyshifty-0.0.5/lib/src/model/components/sparql.rs +3 -0
- pyshifty-0.0.5/lib/src/model/mod.rs +11 -0
- pyshifty-0.0.5/lib/src/model/rules.rs +1 -0
- pyshifty-0.0.5/lib/src/model/shapes.rs +110 -0
- pyshifty-0.0.5/lib/src/model/templates.rs +4 -0
- pyshifty-0.0.5/lib/src/named_nodes.rs +392 -0
- pyshifty-0.0.5/lib/src/optimize.rs +98 -0
- pyshifty-0.0.5/lib/src/parser/component_registry.rs +1092 -0
- pyshifty-0.0.5/lib/src/parser/components.rs +841 -0
- pyshifty-0.0.5/lib/src/parser/mod.rs +737 -0
- pyshifty-0.0.5/lib/src/parser/rules.rs +387 -0
- pyshifty-0.0.5/lib/src/planning.rs +204 -0
- pyshifty-0.0.5/lib/src/report.rs +881 -0
- pyshifty-0.0.5/lib/src/runtime/component.rs +421 -0
- pyshifty-0.0.5/lib/src/runtime/engine.rs +145 -0
- pyshifty-0.0.5/lib/src/runtime/mod.rs +11 -0
- pyshifty-0.0.5/lib/src/runtime/shapes.rs +13 -0
- pyshifty-0.0.5/lib/src/runtime/validators/cardinality.rs +126 -0
- pyshifty-0.0.5/lib/src/runtime/validators/logical.rs +514 -0
- pyshifty-0.0.5/lib/src/runtime/validators/mod.rs +21 -0
- pyshifty-0.0.5/lib/src/runtime/validators/other.rs +344 -0
- pyshifty-0.0.5/lib/src/runtime/validators/property_pair.rs +455 -0
- pyshifty-0.0.5/lib/src/runtime/validators/shape_based.rs +432 -0
- pyshifty-0.0.5/lib/src/runtime/validators/sparql.rs +841 -0
- pyshifty-0.0.5/lib/src/runtime/validators/string_based.rs +605 -0
- pyshifty-0.0.5/lib/src/runtime/validators/value_processing.rs +27 -0
- pyshifty-0.0.5/lib/src/runtime/validators/value_range.rs +478 -0
- pyshifty-0.0.5/lib/src/runtime/validators/value_type.rs +594 -0
- pyshifty-0.0.5/lib/src/shape.rs +2 -0
- pyshifty-0.0.5/lib/src/skolem.rs +7 -0
- pyshifty-0.0.5/lib/src/sparql/mod.rs +1326 -0
- pyshifty-0.0.5/lib/src/test_utils.rs +338 -0
- pyshifty-0.0.5/lib/src/trace.rs +69 -0
- pyshifty-0.0.5/lib/src/types.rs +355 -0
- pyshifty-0.0.5/lib/src/validate.rs +745 -0
- pyshifty-0.0.5/lib/tests/af_custom.rs +35 -0
- pyshifty-0.0.5/lib/tests/af_targets.rs +54 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/complex/manifest.ttl +11 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/complex/personexample.ttl +106 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/complex/shacl-shacl-data-shapes.ttl +411 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/complex/shacl-shacl.ttl +20 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/manifest.ttl +15 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/misc/deactivated-001.ttl +45 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/misc/deactivated-002.ttl +44 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/misc/manifest.ttl +14 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/misc/message-001.ttl +49 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/misc/severity-001.ttl +44 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/misc/severity-002.ttl +61 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/and-001.ttl +78 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/and-002.ttl +75 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/class-001.ttl +71 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/class-002.ttl +63 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/class-003.ttl +106 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/closed-001.ttl +65 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/closed-002.ttl +59 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/datatype-001.ttl +65 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/datatype-002.ttl +54 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/disjoint-001.ttl +52 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/equals-001.ttl +60 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/hasValue-001.ttl +45 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/in-001.ttl +64 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/languageIn-001.ttl +67 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/manifest.ttl +41 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/maxExclusive-001.ttl +92 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/maxInclusive-001.ttl +76 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/maxLength-001.ttl +88 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/minExclusive-001.ttl +92 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/minInclusive-001.ttl +45 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/minInclusive-002.ttl +62 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/minInclusive-003.ttl +71 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/minLength-001.ttl +80 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/node-001.ttl +56 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/nodeKind-001.ttl +44 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/not-001.ttl +60 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/not-002.ttl +53 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/or-001.ttl +92 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/pattern-001.ttl +77 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/pattern-002.ttl +46 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/qualified-001-data.ttl +5 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/qualified-001-shapes.ttl +11 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/qualified-001.ttl +39 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/xone-001.ttl +75 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/xone-duplicate-data.ttl +5 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/xone-duplicate-shapes.ttl +8 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/node/xone-duplicate.ttl +43 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/path/manifest.ttl +22 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/path/path-alternative-001.ttl +87 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/path/path-complex-001.ttl +92 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/path/path-complex-002-data.ttl +8 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/path/path-complex-002-shapes.ttl +15 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/path/path-complex-002.ttl +70 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/path/path-inverse-001.ttl +91 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/path/path-oneOrMore-001.ttl +72 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/path/path-sequence-001.ttl +81 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/path/path-sequence-002.ttl +84 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/path/path-sequence-duplicate-001.ttl +64 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/path/path-strange-001.ttl +53 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/path/path-strange-002.ttl +53 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/path/path-unused-001-data.ttl +6 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/path/path-unused-001-shapes.ttl +18 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/path/path-unused-001.ttl +47 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/path/path-zeroOrMore-001.ttl +62 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/path/path-zeroOrOne-001.ttl +62 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/and-001.ttl +108 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/class-001.ttl +92 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/datatype-001.ttl +77 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/datatype-002.ttl +72 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/datatype-003.ttl +70 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/datatype-ill-formed-data.ttl +7 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/datatype-ill-formed-shapes.ttl +9 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/datatype-ill-formed.ttl +53 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/disjoint-001.ttl +85 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/equals-001.ttl +120 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/hasValue-001.ttl +69 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/in-001.ttl +70 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/languageIn-001.ttl +80 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/lessThan-001.ttl +97 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/lessThan-002.ttl +82 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/lessThanOrEquals-001.ttl +88 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/manifest.ttl +47 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/maxCount-001.ttl +65 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/maxCount-002.ttl +58 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/maxExclusive-001.ttl +85 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/maxInclusive-001.ttl +72 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/maxLength-001.ttl +62 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/minCount-001.ttl +63 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/minCount-002.ttl +42 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/minExclusive-001.ttl +70 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/minExclusive-002.ttl +66 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/minLength-001.ttl +62 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/node-001.ttl +114 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/node-002.ttl +76 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/nodeKind-001.ttl +372 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/not-001.ttl +69 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/or-001.ttl +77 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/or-datatypes-001.ttl +96 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/pattern-001.ttl +75 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/pattern-002.ttl +67 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/property-001.ttl +101 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/qualifiedMinCountDisjoint-001.ttl +117 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/qualifiedValueShape-001.ttl +81 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/qualifiedValueShapesDisjoint-001.ttl +129 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/uniqueLang-001.ttl +87 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/uniqueLang-002-data.ttl +4 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/uniqueLang-002-shapes.ttl +13 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/property/uniqueLang-002.ttl +24 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/targets/manifest.ttl +16 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/targets/multipleTargets-001.ttl +57 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/targets/targetClass-001.ttl +63 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/targets/targetClassImplicit-001.ttl +59 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/targets/targetNode-001.ttl +58 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/targets/targetObjectsOf-001.ttl +66 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/targets/targetSubjectsOf-001.ttl +58 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/targets/targetSubjectsOf-002.ttl +75 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/validation-reports/manifest.ttl +10 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/validation-reports/shared-data.ttl +5 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/validation-reports/shared-shapes.ttl +17 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/core/validation-reports/shared.ttl +69 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/manifest.ttl +10 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/component/manifest.ttl +12 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/component/nodeValidator-001.ttl +84 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/component/optional-001.ttl +114 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/component/propertyValidator-select-001.ttl +108 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/component/validator-001.ttl +82 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/manifest.ttl +12 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/node/manifest.ttl +13 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/node/prefixes-001.ttl +71 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/node/sparql-001.ttl +90 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/node/sparql-002.ttl +70 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/node/sparql-003.ttl +71 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/pre-binding/manifest.ttl +23 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/pre-binding/pre-binding-001.ttl +64 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/pre-binding/pre-binding-002.ttl +68 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/pre-binding/pre-binding-003.ttl +68 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/pre-binding/pre-binding-004.ttl +63 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/pre-binding/pre-binding-005.ttl +69 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/pre-binding/pre-binding-006.ttl +55 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/pre-binding/pre-binding-007.ttl +67 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/pre-binding/shapesGraph-001.ttl +65 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/pre-binding/unsupported-sparql-001.ttl +35 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/pre-binding/unsupported-sparql-002.ttl +34 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/pre-binding/unsupported-sparql-003.ttl +37 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/pre-binding/unsupported-sparql-004.ttl +40 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/pre-binding/unsupported-sparql-005.ttl +34 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/pre-binding/unsupported-sparql-006.ttl +86 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/property/manifest.ttl +10 -0
- pyshifty-0.0.5/lib/tests/data-shapes/data-shapes-test-suite/tests/sparql/property/sparql-001.ttl +69 -0
- pyshifty-0.0.5/lib/tests/fixtures/af_default_data.ttl +9 -0
- pyshifty-0.0.5/lib/tests/fixtures/af_default_shapes.ttl +44 -0
- pyshifty-0.0.5/lib/tests/fixtures/af_target_data.ttl +18 -0
- pyshifty-0.0.5/lib/tests/fixtures/af_target_shapes.ttl +55 -0
- pyshifty-0.0.5/lib/tests/isomorphism_cli.rs +139 -0
- pyshifty-0.0.5/lib/tests/manifest_test.rs +263 -0
- pyshifty-0.0.5/lib/tests/rewrite-tests.py +46 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/README.md +12 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/complex/manifest.ttl +5 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/complex/personexample.test.ttl +75 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/manifest.ttl +10 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/misc/deactivated-001.test.ttl +31 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/misc/deactivated-002.test.ttl +30 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/misc/manifest.ttl +8 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/misc/severity-001.test.ttl +30 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/misc/severity-002.test.ttl +43 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/and-001.test.ttl +48 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/and-002.test.ttl +47 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/class-001.test.ttl +50 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/class-002.test.ttl +44 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/closed-001.test.ttl +45 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/closed-002.test.ttl +39 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/datatype-001.test.ttl +46 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/datatype-002.test.ttl +38 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/disjoint-001.test.ttl +36 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/equals-001.test.ttl +42 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/hasValue-001.test.ttl +30 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/in-001.test.ttl +42 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/languageIn-001.test.ttl +46 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/manifest.ttl +31 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/maxExclusive-001.test.ttl +67 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/maxInclusive-001.test.ttl +55 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/maxLength-001.test.ttl +65 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/minExclusive-001.test.ttl +67 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/minInclusive-001.test.ttl +31 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/minLength-001.test.ttl +59 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/node-001.test.ttl +38 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/nodeKind-001.test.ttl +30 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/not-001.test.ttl +40 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/not-002.test.ttl +34 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/or-001.test.ttl +58 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/pattern-001.test.ttl +56 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/pattern-002.test.ttl +32 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/node/xone-001.test.ttl +45 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/path/manifest.ttl +13 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/path/path-alternative-001.test.ttl +52 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/path/path-complex-001.test.ttl +55 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/path/path-inverse-001.test.ttl +61 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/path/path-oneOrMore-001.test.ttl +46 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/path/path-sequence-001.test.ttl +51 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/path/path-sequence-002.test.ttl +51 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/path/path-sequence-duplicate-001.test.ttl +38 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/path/path-zeroOrMore-001.test.ttl +40 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/path/path-zeroOrOne-001.test.ttl +40 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/and-001.test.ttl +70 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/class-001.test.ttl +64 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/datatype-001.test.ttl +57 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/datatype-002.test.ttl +51 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/datatype-003.test.ttl +44 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/disjoint-001.test.ttl +62 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/equals-001.test.ttl +89 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/hasValue-001.test.ttl +50 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/in-001.test.ttl +48 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/languageIn-001.test.ttl +56 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/lessThan-001.test.ttl +71 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/lessThan-002.test.ttl +60 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/lessThanOrEquals-001.test.ttl +64 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/manifest.ttl +41 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/maxCount-001.test.ttl +47 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/maxCount-002.test.ttl +42 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/maxExclusive-001.test.ttl +61 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/maxInclusive-001.test.ttl +51 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/maxLength-001.test.ttl +44 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/minCount-001.test.ttl +45 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/minCount-002.test.ttl +27 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/minExclusive-001.test.ttl +50 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/minExclusive-002.test.ttl +47 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/minLength-001.test.ttl +44 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/node-001.test.ttl +81 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/node-002.test.ttl +54 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/nodeKind-001.test.ttl +284 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/not-001.test.ttl +49 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/or-001.test.ttl +49 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/or-datatypes-001.test.ttl +63 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/pattern-001.test.ttl +55 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/pattern-002.test.ttl +49 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/property-001.test.ttl +73 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/qualifiedMinCountDisjoint-001.test.ttl +89 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/qualifiedValueShape-001.test.ttl +45 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/qualifiedValueShapesDisjoint-001.test.ttl +96 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/uniqueLang-001.test.ttl +65 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/property/xone-001.test.ttl +56 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/targets/manifest.ttl +11 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/targets/multipleTargets-001.test.ttl +37 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/targets/targetClass-001.test.ttl +44 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/targets/targetClassImplicit-001.test.ttl +40 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/targets/targetNode-001.test.ttl +41 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/targets/targetObjectsOf-001.test.ttl +46 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/targets/targetSubjectsOf-001.test.ttl +40 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/core/targets/targetSubjectsOf-002.test.ttl +53 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/expression/booleans-001.test.ttl +50 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/expression/manifest.ttl +6 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/function/manifest.ttl +5 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/function/simpleSPARQLFunction.test.ttl +44 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/manifest.ttl +11 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/rules/manifest.ttl +6 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/rules/sparql/classify-square.test.ttl +65 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/rules/sparql/manifest.ttl +6 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/rules/sparql/rectangle.test.ttl +47 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/rules/triple/functions-permutations.test.ttl +81 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/rules/triple/manifest.ttl +9 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/rules/triple/person.ttl +34 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/rules/triple/person2schema.test.ttl +90 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/rules/triple/rectangle.test.ttl +50 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/rules/triple/schema2person.test.ttl +71 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/rules/triple/square.test.ttl +58 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/shapedefs/anon-shape-001.test.ttl +59 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/shapedefs/anon-shape-002.test.ttl +56 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/shapedefs/manifest.ttl +6 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/sparql/component/manifest.ttl +8 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/sparql/component/nodeValidator-001.test.ttl +58 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/sparql/component/optional-001.test.ttl +82 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/sparql/component/propertyValidator-select-001.test.ttl +80 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/sparql/component/validator-001.test.ttl +61 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/sparql/manifest.ttl +7 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/sparql/node/manifest.ttl +7 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/sparql/node/prefixes-001.test.ttl +50 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/sparql/node/sparql-001.test.ttl +68 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/sparql/node/sparql-002.test.ttl +51 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/sparql/property/manifest.ttl +5 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/sparql/property/sparql-001.test.ttl +51 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/target/manifest.ttl +6 -0
- pyshifty-0.0.5/lib/tests/test-suite/advanced/target/sparqlTarget-001.test.ttl +65 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/complex/manifest.ttl +8 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/complex/personexample.ttl +75 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/complex/shacl-shacl-data-shapes.ttl +259 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/complex/shacl-shacl.ttl +272 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/manifest.ttl +11 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/misc/deactivated-001.ttl +31 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/misc/deactivated-002.ttl +30 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/misc/manifest.ttl +11 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/misc/message-001.ttl +35 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/misc/severity-001.ttl +30 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/misc/severity-002.ttl +43 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/and-001.ttl +48 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/and-002.ttl +47 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/class-001.ttl +50 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/class-002.ttl +44 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/class-003.ttl +77 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/closed-001.ttl +45 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/closed-002.ttl +39 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/datatype-001.ttl +46 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/datatype-002.ttl +38 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/disjoint-001.ttl +36 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/equals-001.ttl +42 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/hasValue-001.ttl +30 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/in-001.ttl +42 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/languageIn-001.ttl +46 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/manifest.ttl +38 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/maxExclusive-001.ttl +67 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/maxInclusive-001.ttl +55 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/maxLength-001.ttl +65 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/minExclusive-001.ttl +67 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/minInclusive-001.ttl +31 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/minInclusive-002.ttl +45 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/minInclusive-003.ttl +51 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/minLength-001.ttl +59 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/node-001.ttl +38 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/nodeKind-001.ttl +30 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/not-001.ttl +40 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/not-002.ttl +34 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/or-001.ttl +58 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/pattern-001.ttl +56 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/pattern-002.ttl +32 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/qualified-001-data.ttl +7 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/qualified-001-shapes.ttl +11 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/qualified-001.ttl +37 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/xone-001.ttl +45 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/xone-duplicate-data.ttl +7 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/xone-duplicate-shapes.ttl +10 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/node/xone-duplicate.ttl +42 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/path/manifest.ttl +19 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/path/path-alternative-001.ttl +52 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/path/path-complex-001.ttl +55 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/path/path-complex-002-data.ttl +8 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/path/path-complex-002-shapes.ttl +16 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/path/path-complex-002.ttl +47 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/path/path-inverse-001.ttl +61 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/path/path-oneOrMore-001.ttl +46 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/path/path-sequence-001.ttl +51 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/path/path-sequence-002.ttl +51 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/path/path-sequence-duplicate-001.ttl +38 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/path/path-strange-001.ttl +47 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/path/path-strange-002.ttl +47 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/path/path-unused-001-data.ttl +6 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/path/path-unused-001-shapes.ttl +23 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/path/path-unused-001.ttl +25 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/path/path-zeroOrMore-001.ttl +40 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/path/path-zeroOrOne-001.ttl +40 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/and-001.ttl +70 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/class-001.ttl +64 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/datatype-001.ttl +57 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/datatype-002.ttl +51 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/datatype-003.ttl +44 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/datatype-ill-formed-data.ttl +7 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/datatype-ill-formed-shapes.ttl +9 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/datatype-ill-formed.ttl +49 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/disjoint-001.ttl +62 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/equals-001.ttl +89 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/hasValue-001.ttl +50 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/in-001.ttl +48 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/languageIn-001.ttl +56 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/lessThan-001.ttl +71 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/lessThan-002.ttl +60 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/lessThanOrEquals-001.ttl +64 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/manifest.ttl +44 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/maxCount-001.ttl +47 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/maxCount-002.ttl +42 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/maxExclusive-001.ttl +61 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/maxInclusive-001.ttl +51 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/maxLength-001.ttl +44 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/minCount-001.ttl +45 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/minCount-002.ttl +27 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/minExclusive-001.ttl +50 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/minExclusive-002.ttl +47 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/minLength-001.ttl +44 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/node-001.ttl +81 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/node-002.ttl +54 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/nodeKind-001.ttl +284 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/not-001.ttl +49 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/or-001.ttl +49 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/or-datatypes-001.ttl +62 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/pattern-001.ttl +55 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/pattern-002.ttl +49 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/property-001.ttl +73 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/qualifiedMinCountDisjoint-001.ttl +89 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/qualifiedValueShape-001.ttl +45 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/qualifiedValueShapesDisjoint-001.ttl +96 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/uniqueLang-001.ttl +65 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/uniqueLang-002-data.ttl +5 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/uniqueLang-002-shapes.ttl +9 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/property/uniqueLang-002.ttl +26 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/targets/manifest.ttl +13 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/targets/multipleTargets-001.ttl +37 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/targets/targetClass-001.ttl +44 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/targets/targetClassImplicit-001.ttl +40 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/targets/targetNode-001.ttl +41 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/targets/targetObjectsOf-001.ttl +46 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/targets/targetSubjectsOf-001.ttl +40 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/targets/targetSubjectsOf-002.ttl +53 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/validation-reports/manifest.ttl +7 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/validation-reports/shared-data.ttl +7 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/validation-reports/shared-shapes.ttl +17 -0
- pyshifty-0.0.5/lib/tests/test-suite/core/validation-reports/shared.ttl +33 -0
- pyshifty-0.0.5/lib/tests/test-suite/manifest.ttl +6 -0
- pyshifty-0.0.5/lib/tests/test-suite/rewrite.sh +8 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/component/manifest.ttl +9 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/component/nodeValidator-001.ttl +58 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/component/optional-001.ttl +82 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/component/propertyValidator-select-001.ttl +80 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/component/validator-001.ttl +61 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/manifest.ttl +8 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/node/manifest.ttl +10 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/node/prefixes-001.ttl +50 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/node/sparql-001.ttl +68 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/node/sparql-002.ttl +51 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/node/sparql-003.ttl +52 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/pre-binding/manifest.ttl +20 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/pre-binding/pre-binding-001.ttl +45 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/pre-binding/pre-binding-002.ttl +49 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/pre-binding/pre-binding-003.ttl +49 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/pre-binding/pre-binding-004.ttl +44 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/pre-binding/pre-binding-005.ttl +49 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/pre-binding/pre-binding-006.ttl +40 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/pre-binding/pre-binding-007.ttl +48 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/pre-binding/shapesGraph-001.ttl +48 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/pre-binding/unsupported-sparql-001.ttl +26 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/pre-binding/unsupported-sparql-002.ttl +25 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/pre-binding/unsupported-sparql-003.ttl +28 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/pre-binding/unsupported-sparql-004.ttl +31 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/pre-binding/unsupported-sparql-005.ttl +25 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/pre-binding/unsupported-sparql-006.ttl +61 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/property/manifest.ttl +7 -0
- pyshifty-0.0.5/lib/tests/test-suite/sparql/property/sparql-001.ttl +51 -0
- pyshifty-0.0.5/pyproject.toml +38 -0
- pyshifty-0.0.5/python/Cargo.toml +24 -0
- pyshifty-0.0.5/python/README.md +92 -0
- pyshifty-0.0.5/python/brick.py +58 -0
- pyshifty-0.0.5/python/build.rs +7 -0
- pyshifty-0.0.5/python/example.py +97 -0
- pyshifty-0.0.5/python/example_ir_cache.py +80 -0
- pyshifty-0.0.5/python/src/lib.rs +1058 -0
- pyshifty-0.0.5/shacl-ir/.gitignore +1 -0
- pyshifty-0.0.5/shacl-ir/Cargo.toml +13 -0
- pyshifty-0.0.5/shacl-ir/README.md +88 -0
- pyshifty-0.0.5/shacl-ir/src/lib.rs +510 -0
|
@@ -0,0 +1,4210 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "abnf"
|
|
7
|
+
version = "0.13.0"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "087113bd50d9adce24850eed5d0476c7d199d532fce8fab5173650331e09033a"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"abnf-core",
|
|
12
|
+
"nom",
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
[[package]]
|
|
16
|
+
name = "abnf-core"
|
|
17
|
+
version = "0.5.0"
|
|
18
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
19
|
+
checksum = "c44e09c43ae1c368fb91a03a566472d0087c26cf7e1b9e8e289c14ede681dd7d"
|
|
20
|
+
dependencies = [
|
|
21
|
+
"nom",
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
[[package]]
|
|
25
|
+
name = "ahash"
|
|
26
|
+
version = "0.7.8"
|
|
27
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
28
|
+
checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
|
|
29
|
+
dependencies = [
|
|
30
|
+
"getrandom 0.2.16",
|
|
31
|
+
"once_cell",
|
|
32
|
+
"version_check",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "ahash"
|
|
37
|
+
version = "0.8.12"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"cfg-if",
|
|
42
|
+
"once_cell",
|
|
43
|
+
"version_check",
|
|
44
|
+
"zerocopy",
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "aho-corasick"
|
|
49
|
+
version = "1.1.4"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
52
|
+
dependencies = [
|
|
53
|
+
"memchr",
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "android_system_properties"
|
|
58
|
+
version = "0.1.5"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
61
|
+
dependencies = [
|
|
62
|
+
"libc",
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "anstream"
|
|
67
|
+
version = "0.6.21"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"anstyle",
|
|
72
|
+
"anstyle-parse",
|
|
73
|
+
"anstyle-query",
|
|
74
|
+
"anstyle-wincon",
|
|
75
|
+
"colorchoice",
|
|
76
|
+
"is_terminal_polyfill",
|
|
77
|
+
"utf8parse",
|
|
78
|
+
]
|
|
79
|
+
|
|
80
|
+
[[package]]
|
|
81
|
+
name = "anstyle"
|
|
82
|
+
version = "1.0.13"
|
|
83
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
84
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
85
|
+
|
|
86
|
+
[[package]]
|
|
87
|
+
name = "anstyle-parse"
|
|
88
|
+
version = "0.2.7"
|
|
89
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
91
|
+
dependencies = [
|
|
92
|
+
"utf8parse",
|
|
93
|
+
]
|
|
94
|
+
|
|
95
|
+
[[package]]
|
|
96
|
+
name = "anstyle-query"
|
|
97
|
+
version = "1.1.5"
|
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
100
|
+
dependencies = [
|
|
101
|
+
"windows-sys 0.61.2",
|
|
102
|
+
]
|
|
103
|
+
|
|
104
|
+
[[package]]
|
|
105
|
+
name = "anstyle-wincon"
|
|
106
|
+
version = "3.0.11"
|
|
107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
108
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
109
|
+
dependencies = [
|
|
110
|
+
"anstyle",
|
|
111
|
+
"once_cell_polyfill",
|
|
112
|
+
"windows-sys 0.61.2",
|
|
113
|
+
]
|
|
114
|
+
|
|
115
|
+
[[package]]
|
|
116
|
+
name = "anyhow"
|
|
117
|
+
version = "1.0.100"
|
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
120
|
+
|
|
121
|
+
[[package]]
|
|
122
|
+
name = "arrayref"
|
|
123
|
+
version = "0.3.9"
|
|
124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
125
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
126
|
+
|
|
127
|
+
[[package]]
|
|
128
|
+
name = "arrayvec"
|
|
129
|
+
version = "0.7.6"
|
|
130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
132
|
+
|
|
133
|
+
[[package]]
|
|
134
|
+
name = "atomic-waker"
|
|
135
|
+
version = "1.1.2"
|
|
136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
137
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
138
|
+
|
|
139
|
+
[[package]]
|
|
140
|
+
name = "atty"
|
|
141
|
+
version = "0.2.14"
|
|
142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
143
|
+
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
|
144
|
+
dependencies = [
|
|
145
|
+
"hermit-abi",
|
|
146
|
+
"libc",
|
|
147
|
+
"winapi",
|
|
148
|
+
]
|
|
149
|
+
|
|
150
|
+
[[package]]
|
|
151
|
+
name = "autocfg"
|
|
152
|
+
version = "1.5.0"
|
|
153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "base64"
|
|
158
|
+
version = "0.22.1"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "bindgen"
|
|
164
|
+
version = "0.72.1"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
167
|
+
dependencies = [
|
|
168
|
+
"bitflags",
|
|
169
|
+
"cexpr",
|
|
170
|
+
"clang-sys",
|
|
171
|
+
"itertools",
|
|
172
|
+
"log",
|
|
173
|
+
"prettyplease",
|
|
174
|
+
"proc-macro2",
|
|
175
|
+
"quote",
|
|
176
|
+
"regex",
|
|
177
|
+
"rustc-hash",
|
|
178
|
+
"shlex",
|
|
179
|
+
"syn 2.0.113",
|
|
180
|
+
]
|
|
181
|
+
|
|
182
|
+
[[package]]
|
|
183
|
+
name = "bitflags"
|
|
184
|
+
version = "2.10.0"
|
|
185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
187
|
+
|
|
188
|
+
[[package]]
|
|
189
|
+
name = "bitmaps"
|
|
190
|
+
version = "2.1.0"
|
|
191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
+
checksum = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2"
|
|
193
|
+
dependencies = [
|
|
194
|
+
"typenum",
|
|
195
|
+
]
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "blake3"
|
|
199
|
+
version = "1.8.2"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0"
|
|
202
|
+
dependencies = [
|
|
203
|
+
"arrayref",
|
|
204
|
+
"arrayvec",
|
|
205
|
+
"cc",
|
|
206
|
+
"cfg-if",
|
|
207
|
+
"constant_time_eq",
|
|
208
|
+
]
|
|
209
|
+
|
|
210
|
+
[[package]]
|
|
211
|
+
name = "block-buffer"
|
|
212
|
+
version = "0.10.4"
|
|
213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
214
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
215
|
+
dependencies = [
|
|
216
|
+
"generic-array",
|
|
217
|
+
]
|
|
218
|
+
|
|
219
|
+
[[package]]
|
|
220
|
+
name = "bstr"
|
|
221
|
+
version = "1.12.1"
|
|
222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
224
|
+
dependencies = [
|
|
225
|
+
"memchr",
|
|
226
|
+
"serde",
|
|
227
|
+
]
|
|
228
|
+
|
|
229
|
+
[[package]]
|
|
230
|
+
name = "btree-range-map"
|
|
231
|
+
version = "0.7.2"
|
|
232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
+
checksum = "1be5c9672446d3800bcbcaabaeba121fe22f1fb25700c4562b22faf76d377c33"
|
|
234
|
+
dependencies = [
|
|
235
|
+
"btree-slab",
|
|
236
|
+
"cc-traits",
|
|
237
|
+
"range-traits",
|
|
238
|
+
"serde",
|
|
239
|
+
"slab",
|
|
240
|
+
]
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "btree-slab"
|
|
244
|
+
version = "0.6.1"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "7a2b56d3029f075c4fa892428a098425b86cef5c89ae54073137ece416aef13c"
|
|
247
|
+
dependencies = [
|
|
248
|
+
"cc-traits",
|
|
249
|
+
"slab",
|
|
250
|
+
"smallvec",
|
|
251
|
+
]
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "bumpalo"
|
|
255
|
+
version = "3.19.1"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
258
|
+
|
|
259
|
+
[[package]]
|
|
260
|
+
name = "bytes"
|
|
261
|
+
version = "1.11.0"
|
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
+
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "cc"
|
|
267
|
+
version = "1.2.51"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "7a0aeaff4ff1a90589618835a598e545176939b97874f7abc7851caa0618f203"
|
|
270
|
+
dependencies = [
|
|
271
|
+
"find-msvc-tools",
|
|
272
|
+
"jobserver",
|
|
273
|
+
"libc",
|
|
274
|
+
"shlex",
|
|
275
|
+
]
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "cc-traits"
|
|
279
|
+
version = "2.0.0"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "060303ef31ef4a522737e1b1ab68c67916f2a787bb2f4f54f383279adba962b5"
|
|
282
|
+
dependencies = [
|
|
283
|
+
"slab",
|
|
284
|
+
]
|
|
285
|
+
|
|
286
|
+
[[package]]
|
|
287
|
+
name = "cexpr"
|
|
288
|
+
version = "0.6.0"
|
|
289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
291
|
+
dependencies = [
|
|
292
|
+
"nom",
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "cfg-if"
|
|
297
|
+
version = "1.0.4"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "cfg_aliases"
|
|
303
|
+
version = "0.2.1"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
306
|
+
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "chrono"
|
|
309
|
+
version = "0.4.42"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
|
|
312
|
+
dependencies = [
|
|
313
|
+
"iana-time-zone",
|
|
314
|
+
"js-sys",
|
|
315
|
+
"num-traits",
|
|
316
|
+
"serde",
|
|
317
|
+
"wasm-bindgen",
|
|
318
|
+
"windows-link",
|
|
319
|
+
]
|
|
320
|
+
|
|
321
|
+
[[package]]
|
|
322
|
+
name = "ciborium"
|
|
323
|
+
version = "0.2.2"
|
|
324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
325
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
326
|
+
dependencies = [
|
|
327
|
+
"ciborium-io",
|
|
328
|
+
"ciborium-ll",
|
|
329
|
+
"serde",
|
|
330
|
+
]
|
|
331
|
+
|
|
332
|
+
[[package]]
|
|
333
|
+
name = "ciborium-io"
|
|
334
|
+
version = "0.2.2"
|
|
335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
336
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
337
|
+
|
|
338
|
+
[[package]]
|
|
339
|
+
name = "ciborium-ll"
|
|
340
|
+
version = "0.2.2"
|
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
343
|
+
dependencies = [
|
|
344
|
+
"ciborium-io",
|
|
345
|
+
"half",
|
|
346
|
+
]
|
|
347
|
+
|
|
348
|
+
[[package]]
|
|
349
|
+
name = "clang-sys"
|
|
350
|
+
version = "1.8.1"
|
|
351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
353
|
+
dependencies = [
|
|
354
|
+
"glob",
|
|
355
|
+
"libc",
|
|
356
|
+
"libloading",
|
|
357
|
+
]
|
|
358
|
+
|
|
359
|
+
[[package]]
|
|
360
|
+
name = "clap"
|
|
361
|
+
version = "4.5.54"
|
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
+
checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394"
|
|
364
|
+
dependencies = [
|
|
365
|
+
"clap_builder",
|
|
366
|
+
"clap_derive",
|
|
367
|
+
]
|
|
368
|
+
|
|
369
|
+
[[package]]
|
|
370
|
+
name = "clap_builder"
|
|
371
|
+
version = "4.5.54"
|
|
372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
373
|
+
checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00"
|
|
374
|
+
dependencies = [
|
|
375
|
+
"anstream",
|
|
376
|
+
"anstyle",
|
|
377
|
+
"clap_lex",
|
|
378
|
+
"strsim",
|
|
379
|
+
]
|
|
380
|
+
|
|
381
|
+
[[package]]
|
|
382
|
+
name = "clap_derive"
|
|
383
|
+
version = "4.5.49"
|
|
384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
385
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
386
|
+
dependencies = [
|
|
387
|
+
"heck",
|
|
388
|
+
"proc-macro2",
|
|
389
|
+
"quote",
|
|
390
|
+
"syn 2.0.113",
|
|
391
|
+
]
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "clap_lex"
|
|
395
|
+
version = "0.7.6"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "cli"
|
|
401
|
+
version = "0.0.5"
|
|
402
|
+
dependencies = [
|
|
403
|
+
"clap",
|
|
404
|
+
"env_logger",
|
|
405
|
+
"graphviz-rust",
|
|
406
|
+
"log",
|
|
407
|
+
"oxigraph",
|
|
408
|
+
"serde_json",
|
|
409
|
+
"shacl-ir",
|
|
410
|
+
"shifty",
|
|
411
|
+
]
|
|
412
|
+
|
|
413
|
+
[[package]]
|
|
414
|
+
name = "colorchoice"
|
|
415
|
+
version = "1.0.4"
|
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
418
|
+
|
|
419
|
+
[[package]]
|
|
420
|
+
name = "constant_time_eq"
|
|
421
|
+
version = "0.3.1"
|
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
+
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "contextual"
|
|
427
|
+
version = "0.1.6"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "05ca71f324d19e85a2e976be04b5ecbb193253794a75adfe2e5044c8bef03f6a"
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "core-foundation-sys"
|
|
433
|
+
version = "0.8.7"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "cpufeatures"
|
|
439
|
+
version = "0.2.17"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
442
|
+
dependencies = [
|
|
443
|
+
"libc",
|
|
444
|
+
]
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "crossbeam-deque"
|
|
448
|
+
version = "0.8.6"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
451
|
+
dependencies = [
|
|
452
|
+
"crossbeam-epoch",
|
|
453
|
+
"crossbeam-utils",
|
|
454
|
+
]
|
|
455
|
+
|
|
456
|
+
[[package]]
|
|
457
|
+
name = "crossbeam-epoch"
|
|
458
|
+
version = "0.9.18"
|
|
459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
461
|
+
dependencies = [
|
|
462
|
+
"crossbeam-utils",
|
|
463
|
+
]
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "crossbeam-utils"
|
|
467
|
+
version = "0.8.21"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "crunchy"
|
|
473
|
+
version = "0.2.4"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
476
|
+
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "crypto-common"
|
|
479
|
+
version = "0.1.7"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
482
|
+
dependencies = [
|
|
483
|
+
"generic-array",
|
|
484
|
+
"typenum",
|
|
485
|
+
]
|
|
486
|
+
|
|
487
|
+
[[package]]
|
|
488
|
+
name = "darling"
|
|
489
|
+
version = "0.20.11"
|
|
490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
492
|
+
dependencies = [
|
|
493
|
+
"darling_core 0.20.11",
|
|
494
|
+
"darling_macro 0.20.11",
|
|
495
|
+
]
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "darling"
|
|
499
|
+
version = "0.21.3"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
|
|
502
|
+
dependencies = [
|
|
503
|
+
"darling_core 0.21.3",
|
|
504
|
+
"darling_macro 0.21.3",
|
|
505
|
+
]
|
|
506
|
+
|
|
507
|
+
[[package]]
|
|
508
|
+
name = "darling_core"
|
|
509
|
+
version = "0.20.11"
|
|
510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
512
|
+
dependencies = [
|
|
513
|
+
"fnv",
|
|
514
|
+
"ident_case",
|
|
515
|
+
"proc-macro2",
|
|
516
|
+
"quote",
|
|
517
|
+
"strsim",
|
|
518
|
+
"syn 2.0.113",
|
|
519
|
+
]
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "darling_core"
|
|
523
|
+
version = "0.21.3"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
|
|
526
|
+
dependencies = [
|
|
527
|
+
"fnv",
|
|
528
|
+
"ident_case",
|
|
529
|
+
"proc-macro2",
|
|
530
|
+
"quote",
|
|
531
|
+
"strsim",
|
|
532
|
+
"syn 2.0.113",
|
|
533
|
+
]
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "darling_macro"
|
|
537
|
+
version = "0.20.11"
|
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
540
|
+
dependencies = [
|
|
541
|
+
"darling_core 0.20.11",
|
|
542
|
+
"quote",
|
|
543
|
+
"syn 2.0.113",
|
|
544
|
+
]
|
|
545
|
+
|
|
546
|
+
[[package]]
|
|
547
|
+
name = "darling_macro"
|
|
548
|
+
version = "0.21.3"
|
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
+
checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
|
|
551
|
+
dependencies = [
|
|
552
|
+
"darling_core 0.21.3",
|
|
553
|
+
"quote",
|
|
554
|
+
"syn 2.0.113",
|
|
555
|
+
]
|
|
556
|
+
|
|
557
|
+
[[package]]
|
|
558
|
+
name = "dashmap"
|
|
559
|
+
version = "6.1.0"
|
|
560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
+
checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
|
|
562
|
+
dependencies = [
|
|
563
|
+
"cfg-if",
|
|
564
|
+
"crossbeam-utils",
|
|
565
|
+
"hashbrown 0.14.5",
|
|
566
|
+
"lock_api",
|
|
567
|
+
"once_cell",
|
|
568
|
+
"parking_lot_core",
|
|
569
|
+
]
|
|
570
|
+
|
|
571
|
+
[[package]]
|
|
572
|
+
name = "decoded-char"
|
|
573
|
+
version = "0.1.1"
|
|
574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
575
|
+
checksum = "5440d1dc8ea7cae44cda3c64568db29bfa2434aba51ae66a50c00488841a65a3"
|
|
576
|
+
|
|
577
|
+
[[package]]
|
|
578
|
+
name = "deranged"
|
|
579
|
+
version = "0.5.5"
|
|
580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
581
|
+
checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
|
|
582
|
+
dependencies = [
|
|
583
|
+
"powerfmt",
|
|
584
|
+
"serde_core",
|
|
585
|
+
]
|
|
586
|
+
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "derive_builder"
|
|
589
|
+
version = "0.20.2"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
|
|
592
|
+
dependencies = [
|
|
593
|
+
"derive_builder_macro",
|
|
594
|
+
]
|
|
595
|
+
|
|
596
|
+
[[package]]
|
|
597
|
+
name = "derive_builder_core"
|
|
598
|
+
version = "0.20.2"
|
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
+
checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
|
|
601
|
+
dependencies = [
|
|
602
|
+
"darling 0.20.11",
|
|
603
|
+
"proc-macro2",
|
|
604
|
+
"quote",
|
|
605
|
+
"syn 2.0.113",
|
|
606
|
+
]
|
|
607
|
+
|
|
608
|
+
[[package]]
|
|
609
|
+
name = "derive_builder_macro"
|
|
610
|
+
version = "0.20.2"
|
|
611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
+
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
|
613
|
+
dependencies = [
|
|
614
|
+
"derive_builder_core",
|
|
615
|
+
"syn 2.0.113",
|
|
616
|
+
]
|
|
617
|
+
|
|
618
|
+
[[package]]
|
|
619
|
+
name = "digest"
|
|
620
|
+
version = "0.10.7"
|
|
621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
623
|
+
dependencies = [
|
|
624
|
+
"block-buffer",
|
|
625
|
+
"crypto-common",
|
|
626
|
+
]
|
|
627
|
+
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "displaydoc"
|
|
630
|
+
version = "0.2.5"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
633
|
+
dependencies = [
|
|
634
|
+
"proc-macro2",
|
|
635
|
+
"quote",
|
|
636
|
+
"syn 2.0.113",
|
|
637
|
+
]
|
|
638
|
+
|
|
639
|
+
[[package]]
|
|
640
|
+
name = "dot-generator"
|
|
641
|
+
version = "0.2.0"
|
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
+
checksum = "0aaac7ada45f71873ebce336491d1c1bc4a7c8042c7cea978168ad59e805b871"
|
|
644
|
+
dependencies = [
|
|
645
|
+
"dot-structures",
|
|
646
|
+
]
|
|
647
|
+
|
|
648
|
+
[[package]]
|
|
649
|
+
name = "dot-structures"
|
|
650
|
+
version = "0.1.2"
|
|
651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
652
|
+
checksum = "498cfcded997a93eb31edd639361fa33fd229a8784e953b37d71035fe3890b7b"
|
|
653
|
+
|
|
654
|
+
[[package]]
|
|
655
|
+
name = "dyn-clone"
|
|
656
|
+
version = "1.0.20"
|
|
657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
658
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
659
|
+
|
|
660
|
+
[[package]]
|
|
661
|
+
name = "educe"
|
|
662
|
+
version = "0.4.23"
|
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
+
checksum = "0f0042ff8246a363dbe77d2ceedb073339e85a804b9a47636c6e016a9a32c05f"
|
|
665
|
+
dependencies = [
|
|
666
|
+
"enum-ordinalize 3.1.15",
|
|
667
|
+
"proc-macro2",
|
|
668
|
+
"quote",
|
|
669
|
+
"syn 1.0.109",
|
|
670
|
+
]
|
|
671
|
+
|
|
672
|
+
[[package]]
|
|
673
|
+
name = "educe"
|
|
674
|
+
version = "0.5.11"
|
|
675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
676
|
+
checksum = "e4bd92664bf78c4d3dba9b7cdafce6fa15b13ed3ed16175218196942e99168a8"
|
|
677
|
+
dependencies = [
|
|
678
|
+
"enum-ordinalize 4.3.2",
|
|
679
|
+
"proc-macro2",
|
|
680
|
+
"quote",
|
|
681
|
+
"syn 2.0.113",
|
|
682
|
+
]
|
|
683
|
+
|
|
684
|
+
[[package]]
|
|
685
|
+
name = "either"
|
|
686
|
+
version = "1.15.0"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
689
|
+
|
|
690
|
+
[[package]]
|
|
691
|
+
name = "enum-ordinalize"
|
|
692
|
+
version = "3.1.15"
|
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
+
checksum = "1bf1fa3f06bbff1ea5b1a9c7b14aa992a39657db60a2759457328d7e058f49ee"
|
|
695
|
+
dependencies = [
|
|
696
|
+
"num-bigint",
|
|
697
|
+
"num-traits",
|
|
698
|
+
"proc-macro2",
|
|
699
|
+
"quote",
|
|
700
|
+
"syn 2.0.113",
|
|
701
|
+
]
|
|
702
|
+
|
|
703
|
+
[[package]]
|
|
704
|
+
name = "enum-ordinalize"
|
|
705
|
+
version = "4.3.2"
|
|
706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
+
checksum = "4a1091a7bb1f8f2c4b28f1fe2cef4980ca2d410a3d727d67ecc3178c9b0800f0"
|
|
708
|
+
dependencies = [
|
|
709
|
+
"enum-ordinalize-derive",
|
|
710
|
+
]
|
|
711
|
+
|
|
712
|
+
[[package]]
|
|
713
|
+
name = "enum-ordinalize-derive"
|
|
714
|
+
version = "4.3.2"
|
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
716
|
+
checksum = "8ca9601fb2d62598ee17836250842873a413586e5d7ed88b356e38ddbb0ec631"
|
|
717
|
+
dependencies = [
|
|
718
|
+
"proc-macro2",
|
|
719
|
+
"quote",
|
|
720
|
+
"syn 2.0.113",
|
|
721
|
+
]
|
|
722
|
+
|
|
723
|
+
[[package]]
|
|
724
|
+
name = "env_filter"
|
|
725
|
+
version = "0.1.4"
|
|
726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
727
|
+
checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2"
|
|
728
|
+
dependencies = [
|
|
729
|
+
"log",
|
|
730
|
+
"regex",
|
|
731
|
+
]
|
|
732
|
+
|
|
733
|
+
[[package]]
|
|
734
|
+
name = "env_logger"
|
|
735
|
+
version = "0.11.8"
|
|
736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
737
|
+
checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
|
|
738
|
+
dependencies = [
|
|
739
|
+
"anstream",
|
|
740
|
+
"anstyle",
|
|
741
|
+
"env_filter",
|
|
742
|
+
"jiff",
|
|
743
|
+
"log",
|
|
744
|
+
]
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "equivalent"
|
|
748
|
+
version = "1.0.2"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "errno"
|
|
754
|
+
version = "0.3.14"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
757
|
+
dependencies = [
|
|
758
|
+
"libc",
|
|
759
|
+
"windows-sys 0.61.2",
|
|
760
|
+
]
|
|
761
|
+
|
|
762
|
+
[[package]]
|
|
763
|
+
name = "fastrand"
|
|
764
|
+
version = "2.3.0"
|
|
765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
766
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
767
|
+
|
|
768
|
+
[[package]]
|
|
769
|
+
name = "find-msvc-tools"
|
|
770
|
+
version = "0.1.6"
|
|
771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
772
|
+
checksum = "645cbb3a84e60b7531617d5ae4e57f7e27308f6445f5abf653209ea76dec8dff"
|
|
773
|
+
|
|
774
|
+
[[package]]
|
|
775
|
+
name = "fixedbitset"
|
|
776
|
+
version = "0.5.7"
|
|
777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
778
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
779
|
+
|
|
780
|
+
[[package]]
|
|
781
|
+
name = "fnv"
|
|
782
|
+
version = "1.0.7"
|
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
785
|
+
|
|
786
|
+
[[package]]
|
|
787
|
+
name = "foldhash"
|
|
788
|
+
version = "0.1.5"
|
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
791
|
+
|
|
792
|
+
[[package]]
|
|
793
|
+
name = "form_urlencoded"
|
|
794
|
+
version = "1.2.2"
|
|
795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
797
|
+
dependencies = [
|
|
798
|
+
"percent-encoding",
|
|
799
|
+
]
|
|
800
|
+
|
|
801
|
+
[[package]]
|
|
802
|
+
name = "fs2"
|
|
803
|
+
version = "0.4.3"
|
|
804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
805
|
+
checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
|
|
806
|
+
dependencies = [
|
|
807
|
+
"libc",
|
|
808
|
+
"winapi",
|
|
809
|
+
]
|
|
810
|
+
|
|
811
|
+
[[package]]
|
|
812
|
+
name = "fuchsia-cprng"
|
|
813
|
+
version = "0.1.1"
|
|
814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
815
|
+
checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
|
|
816
|
+
|
|
817
|
+
[[package]]
|
|
818
|
+
name = "futures"
|
|
819
|
+
version = "0.3.31"
|
|
820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
821
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
822
|
+
dependencies = [
|
|
823
|
+
"futures-channel",
|
|
824
|
+
"futures-core",
|
|
825
|
+
"futures-executor",
|
|
826
|
+
"futures-io",
|
|
827
|
+
"futures-sink",
|
|
828
|
+
"futures-task",
|
|
829
|
+
"futures-util",
|
|
830
|
+
]
|
|
831
|
+
|
|
832
|
+
[[package]]
|
|
833
|
+
name = "futures-channel"
|
|
834
|
+
version = "0.3.31"
|
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
837
|
+
dependencies = [
|
|
838
|
+
"futures-core",
|
|
839
|
+
"futures-sink",
|
|
840
|
+
]
|
|
841
|
+
|
|
842
|
+
[[package]]
|
|
843
|
+
name = "futures-core"
|
|
844
|
+
version = "0.3.31"
|
|
845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
846
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "futures-executor"
|
|
850
|
+
version = "0.3.31"
|
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
853
|
+
dependencies = [
|
|
854
|
+
"futures-core",
|
|
855
|
+
"futures-task",
|
|
856
|
+
"futures-util",
|
|
857
|
+
]
|
|
858
|
+
|
|
859
|
+
[[package]]
|
|
860
|
+
name = "futures-io"
|
|
861
|
+
version = "0.3.31"
|
|
862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
863
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
864
|
+
|
|
865
|
+
[[package]]
|
|
866
|
+
name = "futures-macro"
|
|
867
|
+
version = "0.3.31"
|
|
868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
870
|
+
dependencies = [
|
|
871
|
+
"proc-macro2",
|
|
872
|
+
"quote",
|
|
873
|
+
"syn 2.0.113",
|
|
874
|
+
]
|
|
875
|
+
|
|
876
|
+
[[package]]
|
|
877
|
+
name = "futures-sink"
|
|
878
|
+
version = "0.3.31"
|
|
879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
881
|
+
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "futures-task"
|
|
884
|
+
version = "0.3.31"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "futures-util"
|
|
890
|
+
version = "0.3.31"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
893
|
+
dependencies = [
|
|
894
|
+
"futures-channel",
|
|
895
|
+
"futures-core",
|
|
896
|
+
"futures-io",
|
|
897
|
+
"futures-macro",
|
|
898
|
+
"futures-sink",
|
|
899
|
+
"futures-task",
|
|
900
|
+
"memchr",
|
|
901
|
+
"pin-project-lite",
|
|
902
|
+
"pin-utils",
|
|
903
|
+
"slab",
|
|
904
|
+
]
|
|
905
|
+
|
|
906
|
+
[[package]]
|
|
907
|
+
name = "generic-array"
|
|
908
|
+
version = "0.14.7"
|
|
909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
910
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
911
|
+
dependencies = [
|
|
912
|
+
"typenum",
|
|
913
|
+
"version_check",
|
|
914
|
+
]
|
|
915
|
+
|
|
916
|
+
[[package]]
|
|
917
|
+
name = "getopts"
|
|
918
|
+
version = "0.2.24"
|
|
919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
920
|
+
checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
|
|
921
|
+
dependencies = [
|
|
922
|
+
"unicode-width",
|
|
923
|
+
]
|
|
924
|
+
|
|
925
|
+
[[package]]
|
|
926
|
+
name = "getrandom"
|
|
927
|
+
version = "0.2.16"
|
|
928
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
929
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
930
|
+
dependencies = [
|
|
931
|
+
"cfg-if",
|
|
932
|
+
"js-sys",
|
|
933
|
+
"libc",
|
|
934
|
+
"wasi",
|
|
935
|
+
"wasm-bindgen",
|
|
936
|
+
]
|
|
937
|
+
|
|
938
|
+
[[package]]
|
|
939
|
+
name = "getrandom"
|
|
940
|
+
version = "0.3.4"
|
|
941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
942
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
943
|
+
dependencies = [
|
|
944
|
+
"cfg-if",
|
|
945
|
+
"js-sys",
|
|
946
|
+
"libc",
|
|
947
|
+
"r-efi",
|
|
948
|
+
"wasip2",
|
|
949
|
+
"wasm-bindgen",
|
|
950
|
+
]
|
|
951
|
+
|
|
952
|
+
[[package]]
|
|
953
|
+
name = "glob"
|
|
954
|
+
version = "0.3.3"
|
|
955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
956
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
957
|
+
|
|
958
|
+
[[package]]
|
|
959
|
+
name = "globset"
|
|
960
|
+
version = "0.4.18"
|
|
961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
962
|
+
checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
|
|
963
|
+
dependencies = [
|
|
964
|
+
"aho-corasick",
|
|
965
|
+
"bstr",
|
|
966
|
+
"log",
|
|
967
|
+
"regex-automata",
|
|
968
|
+
"regex-syntax",
|
|
969
|
+
]
|
|
970
|
+
|
|
971
|
+
[[package]]
|
|
972
|
+
name = "graphviz-rust"
|
|
973
|
+
version = "0.9.6"
|
|
974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
975
|
+
checksum = "db134cb611668917cabf340af9a39518426f9a10827b4cedcb4cdcf84443f6d0"
|
|
976
|
+
dependencies = [
|
|
977
|
+
"dot-generator",
|
|
978
|
+
"dot-structures",
|
|
979
|
+
"into-attr",
|
|
980
|
+
"into-attr-derive",
|
|
981
|
+
"pest",
|
|
982
|
+
"pest_derive",
|
|
983
|
+
"rand 0.9.2",
|
|
984
|
+
"tempfile",
|
|
985
|
+
]
|
|
986
|
+
|
|
987
|
+
[[package]]
|
|
988
|
+
name = "half"
|
|
989
|
+
version = "2.7.1"
|
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
992
|
+
dependencies = [
|
|
993
|
+
"cfg-if",
|
|
994
|
+
"crunchy",
|
|
995
|
+
"zerocopy",
|
|
996
|
+
]
|
|
997
|
+
|
|
998
|
+
[[package]]
|
|
999
|
+
name = "hashbrown"
|
|
1000
|
+
version = "0.12.3"
|
|
1001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1002
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
1003
|
+
dependencies = [
|
|
1004
|
+
"ahash 0.7.8",
|
|
1005
|
+
]
|
|
1006
|
+
|
|
1007
|
+
[[package]]
|
|
1008
|
+
name = "hashbrown"
|
|
1009
|
+
version = "0.13.2"
|
|
1010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1011
|
+
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
|
|
1012
|
+
dependencies = [
|
|
1013
|
+
"ahash 0.8.12",
|
|
1014
|
+
]
|
|
1015
|
+
|
|
1016
|
+
[[package]]
|
|
1017
|
+
name = "hashbrown"
|
|
1018
|
+
version = "0.14.5"
|
|
1019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1020
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
1021
|
+
|
|
1022
|
+
[[package]]
|
|
1023
|
+
name = "hashbrown"
|
|
1024
|
+
version = "0.15.5"
|
|
1025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1026
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1027
|
+
dependencies = [
|
|
1028
|
+
"foldhash",
|
|
1029
|
+
"rayon",
|
|
1030
|
+
]
|
|
1031
|
+
|
|
1032
|
+
[[package]]
|
|
1033
|
+
name = "hashbrown"
|
|
1034
|
+
version = "0.16.1"
|
|
1035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1037
|
+
|
|
1038
|
+
[[package]]
|
|
1039
|
+
name = "heck"
|
|
1040
|
+
version = "0.5.0"
|
|
1041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1042
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1043
|
+
|
|
1044
|
+
[[package]]
|
|
1045
|
+
name = "hermit-abi"
|
|
1046
|
+
version = "0.1.19"
|
|
1047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1048
|
+
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
|
|
1049
|
+
dependencies = [
|
|
1050
|
+
"libc",
|
|
1051
|
+
]
|
|
1052
|
+
|
|
1053
|
+
[[package]]
|
|
1054
|
+
name = "hex"
|
|
1055
|
+
version = "0.4.3"
|
|
1056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1057
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1058
|
+
|
|
1059
|
+
[[package]]
|
|
1060
|
+
name = "hex_fmt"
|
|
1061
|
+
version = "0.3.0"
|
|
1062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1063
|
+
checksum = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f"
|
|
1064
|
+
|
|
1065
|
+
[[package]]
|
|
1066
|
+
name = "http"
|
|
1067
|
+
version = "1.4.0"
|
|
1068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1069
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
1070
|
+
dependencies = [
|
|
1071
|
+
"bytes",
|
|
1072
|
+
"itoa",
|
|
1073
|
+
]
|
|
1074
|
+
|
|
1075
|
+
[[package]]
|
|
1076
|
+
name = "http-body"
|
|
1077
|
+
version = "1.0.1"
|
|
1078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1079
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
1080
|
+
dependencies = [
|
|
1081
|
+
"bytes",
|
|
1082
|
+
"http",
|
|
1083
|
+
]
|
|
1084
|
+
|
|
1085
|
+
[[package]]
|
|
1086
|
+
name = "http-body-util"
|
|
1087
|
+
version = "0.1.3"
|
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
1090
|
+
dependencies = [
|
|
1091
|
+
"bytes",
|
|
1092
|
+
"futures-core",
|
|
1093
|
+
"http",
|
|
1094
|
+
"http-body",
|
|
1095
|
+
"pin-project-lite",
|
|
1096
|
+
]
|
|
1097
|
+
|
|
1098
|
+
[[package]]
|
|
1099
|
+
name = "httparse"
|
|
1100
|
+
version = "1.10.1"
|
|
1101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1102
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1103
|
+
|
|
1104
|
+
[[package]]
|
|
1105
|
+
name = "hyper"
|
|
1106
|
+
version = "1.8.1"
|
|
1107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1108
|
+
checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
|
|
1109
|
+
dependencies = [
|
|
1110
|
+
"atomic-waker",
|
|
1111
|
+
"bytes",
|
|
1112
|
+
"futures-channel",
|
|
1113
|
+
"futures-core",
|
|
1114
|
+
"http",
|
|
1115
|
+
"http-body",
|
|
1116
|
+
"httparse",
|
|
1117
|
+
"itoa",
|
|
1118
|
+
"pin-project-lite",
|
|
1119
|
+
"pin-utils",
|
|
1120
|
+
"smallvec",
|
|
1121
|
+
"tokio",
|
|
1122
|
+
"want",
|
|
1123
|
+
]
|
|
1124
|
+
|
|
1125
|
+
[[package]]
|
|
1126
|
+
name = "hyper-rustls"
|
|
1127
|
+
version = "0.27.7"
|
|
1128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1129
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
1130
|
+
dependencies = [
|
|
1131
|
+
"http",
|
|
1132
|
+
"hyper",
|
|
1133
|
+
"hyper-util",
|
|
1134
|
+
"rustls",
|
|
1135
|
+
"rustls-pki-types",
|
|
1136
|
+
"tokio",
|
|
1137
|
+
"tokio-rustls",
|
|
1138
|
+
"tower-service",
|
|
1139
|
+
"webpki-roots",
|
|
1140
|
+
]
|
|
1141
|
+
|
|
1142
|
+
[[package]]
|
|
1143
|
+
name = "hyper-util"
|
|
1144
|
+
version = "0.1.19"
|
|
1145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1146
|
+
checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
|
|
1147
|
+
dependencies = [
|
|
1148
|
+
"base64",
|
|
1149
|
+
"bytes",
|
|
1150
|
+
"futures-channel",
|
|
1151
|
+
"futures-core",
|
|
1152
|
+
"futures-util",
|
|
1153
|
+
"http",
|
|
1154
|
+
"http-body",
|
|
1155
|
+
"hyper",
|
|
1156
|
+
"ipnet",
|
|
1157
|
+
"libc",
|
|
1158
|
+
"percent-encoding",
|
|
1159
|
+
"pin-project-lite",
|
|
1160
|
+
"socket2",
|
|
1161
|
+
"tokio",
|
|
1162
|
+
"tower-service",
|
|
1163
|
+
"tracing",
|
|
1164
|
+
]
|
|
1165
|
+
|
|
1166
|
+
[[package]]
|
|
1167
|
+
name = "iana-time-zone"
|
|
1168
|
+
version = "0.1.64"
|
|
1169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1170
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
1171
|
+
dependencies = [
|
|
1172
|
+
"android_system_properties",
|
|
1173
|
+
"core-foundation-sys",
|
|
1174
|
+
"iana-time-zone-haiku",
|
|
1175
|
+
"js-sys",
|
|
1176
|
+
"log",
|
|
1177
|
+
"wasm-bindgen",
|
|
1178
|
+
"windows-core",
|
|
1179
|
+
]
|
|
1180
|
+
|
|
1181
|
+
[[package]]
|
|
1182
|
+
name = "iana-time-zone-haiku"
|
|
1183
|
+
version = "0.1.2"
|
|
1184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1185
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1186
|
+
dependencies = [
|
|
1187
|
+
"cc",
|
|
1188
|
+
]
|
|
1189
|
+
|
|
1190
|
+
[[package]]
|
|
1191
|
+
name = "icu_collections"
|
|
1192
|
+
version = "2.1.1"
|
|
1193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1194
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
1195
|
+
dependencies = [
|
|
1196
|
+
"displaydoc",
|
|
1197
|
+
"potential_utf",
|
|
1198
|
+
"yoke",
|
|
1199
|
+
"zerofrom",
|
|
1200
|
+
"zerovec",
|
|
1201
|
+
]
|
|
1202
|
+
|
|
1203
|
+
[[package]]
|
|
1204
|
+
name = "icu_locale_core"
|
|
1205
|
+
version = "2.1.1"
|
|
1206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1207
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
1208
|
+
dependencies = [
|
|
1209
|
+
"displaydoc",
|
|
1210
|
+
"litemap",
|
|
1211
|
+
"tinystr",
|
|
1212
|
+
"writeable",
|
|
1213
|
+
"zerovec",
|
|
1214
|
+
]
|
|
1215
|
+
|
|
1216
|
+
[[package]]
|
|
1217
|
+
name = "icu_normalizer"
|
|
1218
|
+
version = "2.1.1"
|
|
1219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1220
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
1221
|
+
dependencies = [
|
|
1222
|
+
"icu_collections",
|
|
1223
|
+
"icu_normalizer_data",
|
|
1224
|
+
"icu_properties",
|
|
1225
|
+
"icu_provider",
|
|
1226
|
+
"smallvec",
|
|
1227
|
+
"zerovec",
|
|
1228
|
+
]
|
|
1229
|
+
|
|
1230
|
+
[[package]]
|
|
1231
|
+
name = "icu_normalizer_data"
|
|
1232
|
+
version = "2.1.1"
|
|
1233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1234
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
1235
|
+
|
|
1236
|
+
[[package]]
|
|
1237
|
+
name = "icu_properties"
|
|
1238
|
+
version = "2.1.2"
|
|
1239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1240
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
1241
|
+
dependencies = [
|
|
1242
|
+
"icu_collections",
|
|
1243
|
+
"icu_locale_core",
|
|
1244
|
+
"icu_properties_data",
|
|
1245
|
+
"icu_provider",
|
|
1246
|
+
"zerotrie",
|
|
1247
|
+
"zerovec",
|
|
1248
|
+
]
|
|
1249
|
+
|
|
1250
|
+
[[package]]
|
|
1251
|
+
name = "icu_properties_data"
|
|
1252
|
+
version = "2.1.2"
|
|
1253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1254
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
1255
|
+
|
|
1256
|
+
[[package]]
|
|
1257
|
+
name = "icu_provider"
|
|
1258
|
+
version = "2.1.1"
|
|
1259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1260
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
1261
|
+
dependencies = [
|
|
1262
|
+
"displaydoc",
|
|
1263
|
+
"icu_locale_core",
|
|
1264
|
+
"writeable",
|
|
1265
|
+
"yoke",
|
|
1266
|
+
"zerofrom",
|
|
1267
|
+
"zerotrie",
|
|
1268
|
+
"zerovec",
|
|
1269
|
+
]
|
|
1270
|
+
|
|
1271
|
+
[[package]]
|
|
1272
|
+
name = "ident_case"
|
|
1273
|
+
version = "1.0.1"
|
|
1274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1275
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1276
|
+
|
|
1277
|
+
[[package]]
|
|
1278
|
+
name = "idna"
|
|
1279
|
+
version = "1.1.0"
|
|
1280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1281
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1282
|
+
dependencies = [
|
|
1283
|
+
"idna_adapter",
|
|
1284
|
+
"smallvec",
|
|
1285
|
+
"utf8_iter",
|
|
1286
|
+
]
|
|
1287
|
+
|
|
1288
|
+
[[package]]
|
|
1289
|
+
name = "idna_adapter"
|
|
1290
|
+
version = "1.2.1"
|
|
1291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1292
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1293
|
+
dependencies = [
|
|
1294
|
+
"icu_normalizer",
|
|
1295
|
+
"icu_properties",
|
|
1296
|
+
]
|
|
1297
|
+
|
|
1298
|
+
[[package]]
|
|
1299
|
+
name = "im"
|
|
1300
|
+
version = "15.1.0"
|
|
1301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1302
|
+
checksum = "d0acd33ff0285af998aaf9b57342af478078f53492322fafc47450e09397e0e9"
|
|
1303
|
+
dependencies = [
|
|
1304
|
+
"bitmaps",
|
|
1305
|
+
"rand_core 0.6.4",
|
|
1306
|
+
"rand_xoshiro",
|
|
1307
|
+
"sized-chunks",
|
|
1308
|
+
"typenum",
|
|
1309
|
+
"version_check",
|
|
1310
|
+
]
|
|
1311
|
+
|
|
1312
|
+
[[package]]
|
|
1313
|
+
name = "indexmap"
|
|
1314
|
+
version = "1.9.3"
|
|
1315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1316
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
1317
|
+
dependencies = [
|
|
1318
|
+
"autocfg",
|
|
1319
|
+
"hashbrown 0.12.3",
|
|
1320
|
+
"serde",
|
|
1321
|
+
]
|
|
1322
|
+
|
|
1323
|
+
[[package]]
|
|
1324
|
+
name = "indexmap"
|
|
1325
|
+
version = "2.12.1"
|
|
1326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1327
|
+
checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
|
|
1328
|
+
dependencies = [
|
|
1329
|
+
"equivalent",
|
|
1330
|
+
"hashbrown 0.16.1",
|
|
1331
|
+
"rayon",
|
|
1332
|
+
"serde",
|
|
1333
|
+
"serde_core",
|
|
1334
|
+
]
|
|
1335
|
+
|
|
1336
|
+
[[package]]
|
|
1337
|
+
name = "indoc"
|
|
1338
|
+
version = "2.0.7"
|
|
1339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1340
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
1341
|
+
dependencies = [
|
|
1342
|
+
"rustversion",
|
|
1343
|
+
]
|
|
1344
|
+
|
|
1345
|
+
[[package]]
|
|
1346
|
+
name = "into-attr"
|
|
1347
|
+
version = "0.1.1"
|
|
1348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1349
|
+
checksum = "18b48c537e49a709e678caec3753a7dba6854661a1eaa27675024283b3f8b376"
|
|
1350
|
+
dependencies = [
|
|
1351
|
+
"dot-structures",
|
|
1352
|
+
]
|
|
1353
|
+
|
|
1354
|
+
[[package]]
|
|
1355
|
+
name = "into-attr-derive"
|
|
1356
|
+
version = "0.2.1"
|
|
1357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1358
|
+
checksum = "ecac7c1ae6cd2c6a3a64d1061a8bdc7f52ff62c26a831a2301e54c1b5d70d5b1"
|
|
1359
|
+
dependencies = [
|
|
1360
|
+
"dot-generator",
|
|
1361
|
+
"dot-structures",
|
|
1362
|
+
"into-attr",
|
|
1363
|
+
"quote",
|
|
1364
|
+
"syn 1.0.109",
|
|
1365
|
+
]
|
|
1366
|
+
|
|
1367
|
+
[[package]]
|
|
1368
|
+
name = "ipnet"
|
|
1369
|
+
version = "2.11.0"
|
|
1370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1371
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
1372
|
+
|
|
1373
|
+
[[package]]
|
|
1374
|
+
name = "iref"
|
|
1375
|
+
version = "3.2.2"
|
|
1376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1377
|
+
checksum = "374372d9ca7331cec26f307b12552554849143e6b2077be3553576aa9aa8258c"
|
|
1378
|
+
dependencies = [
|
|
1379
|
+
"iref-core",
|
|
1380
|
+
]
|
|
1381
|
+
|
|
1382
|
+
[[package]]
|
|
1383
|
+
name = "iref-core"
|
|
1384
|
+
version = "3.2.2"
|
|
1385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1386
|
+
checksum = "b10559a0d518effd4f2cee107f40f83acf8583dcd3e6760b9b60293b0d2c2a70"
|
|
1387
|
+
dependencies = [
|
|
1388
|
+
"pct-str",
|
|
1389
|
+
"smallvec",
|
|
1390
|
+
"static-regular-grammar",
|
|
1391
|
+
"thiserror 1.0.69",
|
|
1392
|
+
]
|
|
1393
|
+
|
|
1394
|
+
[[package]]
|
|
1395
|
+
name = "iri-string"
|
|
1396
|
+
version = "0.7.10"
|
|
1397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1398
|
+
checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
|
|
1399
|
+
dependencies = [
|
|
1400
|
+
"memchr",
|
|
1401
|
+
"serde",
|
|
1402
|
+
]
|
|
1403
|
+
|
|
1404
|
+
[[package]]
|
|
1405
|
+
name = "is_terminal_polyfill"
|
|
1406
|
+
version = "1.70.2"
|
|
1407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1408
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1409
|
+
|
|
1410
|
+
[[package]]
|
|
1411
|
+
name = "itertools"
|
|
1412
|
+
version = "0.13.0"
|
|
1413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
1415
|
+
dependencies = [
|
|
1416
|
+
"either",
|
|
1417
|
+
]
|
|
1418
|
+
|
|
1419
|
+
[[package]]
|
|
1420
|
+
name = "itoa"
|
|
1421
|
+
version = "1.0.17"
|
|
1422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1423
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
1424
|
+
|
|
1425
|
+
[[package]]
|
|
1426
|
+
name = "jiff"
|
|
1427
|
+
version = "0.2.17"
|
|
1428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1429
|
+
checksum = "a87d9b8105c23642f50cbbae03d1f75d8422c5cb98ce7ee9271f7ff7505be6b8"
|
|
1430
|
+
dependencies = [
|
|
1431
|
+
"jiff-static",
|
|
1432
|
+
"log",
|
|
1433
|
+
"portable-atomic",
|
|
1434
|
+
"portable-atomic-util",
|
|
1435
|
+
"serde_core",
|
|
1436
|
+
]
|
|
1437
|
+
|
|
1438
|
+
[[package]]
|
|
1439
|
+
name = "jiff-static"
|
|
1440
|
+
version = "0.2.17"
|
|
1441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1442
|
+
checksum = "b787bebb543f8969132630c51fd0afab173a86c6abae56ff3b9e5e3e3f9f6e58"
|
|
1443
|
+
dependencies = [
|
|
1444
|
+
"proc-macro2",
|
|
1445
|
+
"quote",
|
|
1446
|
+
"syn 2.0.113",
|
|
1447
|
+
]
|
|
1448
|
+
|
|
1449
|
+
[[package]]
|
|
1450
|
+
name = "jobserver"
|
|
1451
|
+
version = "0.1.34"
|
|
1452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1453
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
1454
|
+
dependencies = [
|
|
1455
|
+
"getrandom 0.3.4",
|
|
1456
|
+
"libc",
|
|
1457
|
+
]
|
|
1458
|
+
|
|
1459
|
+
[[package]]
|
|
1460
|
+
name = "js-sys"
|
|
1461
|
+
version = "0.3.83"
|
|
1462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1463
|
+
checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
|
|
1464
|
+
dependencies = [
|
|
1465
|
+
"once_cell",
|
|
1466
|
+
"wasm-bindgen",
|
|
1467
|
+
]
|
|
1468
|
+
|
|
1469
|
+
[[package]]
|
|
1470
|
+
name = "json-event-parser"
|
|
1471
|
+
version = "0.2.2"
|
|
1472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1473
|
+
checksum = "73267b6bffa5356bd46cfa89386673e9a7f62f4eb3adcb45b1bd031892357853"
|
|
1474
|
+
|
|
1475
|
+
[[package]]
|
|
1476
|
+
name = "json-ld"
|
|
1477
|
+
version = "0.21.2"
|
|
1478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1479
|
+
checksum = "a5c23bd3696fabd231e88dc57a893455af22509aae15578f94ce47b9c821e705"
|
|
1480
|
+
dependencies = [
|
|
1481
|
+
"contextual",
|
|
1482
|
+
"futures",
|
|
1483
|
+
"iref",
|
|
1484
|
+
"json-ld-compaction",
|
|
1485
|
+
"json-ld-context-processing",
|
|
1486
|
+
"json-ld-core",
|
|
1487
|
+
"json-ld-expansion",
|
|
1488
|
+
"json-ld-serialization",
|
|
1489
|
+
"json-ld-syntax",
|
|
1490
|
+
"json-syntax",
|
|
1491
|
+
"locspan",
|
|
1492
|
+
"rdf-types",
|
|
1493
|
+
"thiserror 1.0.69",
|
|
1494
|
+
]
|
|
1495
|
+
|
|
1496
|
+
[[package]]
|
|
1497
|
+
name = "json-ld-compaction"
|
|
1498
|
+
version = "0.21.2"
|
|
1499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1500
|
+
checksum = "ad3ab3dfb6249b1e53359c06c2c3c554d3704b64c9d17cb9eaa624248b6161cf"
|
|
1501
|
+
dependencies = [
|
|
1502
|
+
"contextual",
|
|
1503
|
+
"educe 0.4.23",
|
|
1504
|
+
"futures",
|
|
1505
|
+
"indexmap 2.12.1",
|
|
1506
|
+
"iref",
|
|
1507
|
+
"json-ld-context-processing",
|
|
1508
|
+
"json-ld-core",
|
|
1509
|
+
"json-ld-expansion",
|
|
1510
|
+
"json-ld-syntax",
|
|
1511
|
+
"json-syntax",
|
|
1512
|
+
"langtag",
|
|
1513
|
+
"mown",
|
|
1514
|
+
"rdf-types",
|
|
1515
|
+
"thiserror 1.0.69",
|
|
1516
|
+
]
|
|
1517
|
+
|
|
1518
|
+
[[package]]
|
|
1519
|
+
name = "json-ld-context-processing"
|
|
1520
|
+
version = "0.21.2"
|
|
1521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1522
|
+
checksum = "6dac28ce9f01c5bb4f54804817e15c0f94697aaca8e42a4ca56913297b2b4e1e"
|
|
1523
|
+
dependencies = [
|
|
1524
|
+
"contextual",
|
|
1525
|
+
"futures",
|
|
1526
|
+
"iref",
|
|
1527
|
+
"json-ld-core",
|
|
1528
|
+
"json-ld-syntax",
|
|
1529
|
+
"mown",
|
|
1530
|
+
"owning_ref",
|
|
1531
|
+
"rdf-types",
|
|
1532
|
+
"thiserror 1.0.69",
|
|
1533
|
+
]
|
|
1534
|
+
|
|
1535
|
+
[[package]]
|
|
1536
|
+
name = "json-ld-core"
|
|
1537
|
+
version = "0.21.2"
|
|
1538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
|
+
checksum = "f0b91506169548cf5636661a5911bfeb65468a3f14801514583c113b6592c366"
|
|
1540
|
+
dependencies = [
|
|
1541
|
+
"contextual",
|
|
1542
|
+
"educe 0.4.23",
|
|
1543
|
+
"futures",
|
|
1544
|
+
"hashbrown 0.13.2",
|
|
1545
|
+
"indexmap 2.12.1",
|
|
1546
|
+
"iref",
|
|
1547
|
+
"json-ld-syntax",
|
|
1548
|
+
"json-syntax",
|
|
1549
|
+
"langtag",
|
|
1550
|
+
"linked-data",
|
|
1551
|
+
"log",
|
|
1552
|
+
"mime",
|
|
1553
|
+
"once_cell",
|
|
1554
|
+
"permutohedron",
|
|
1555
|
+
"pretty_dtoa",
|
|
1556
|
+
"rdf-types",
|
|
1557
|
+
"ryu-js",
|
|
1558
|
+
"smallvec",
|
|
1559
|
+
"static-iref",
|
|
1560
|
+
"thiserror 1.0.69",
|
|
1561
|
+
]
|
|
1562
|
+
|
|
1563
|
+
[[package]]
|
|
1564
|
+
name = "json-ld-expansion"
|
|
1565
|
+
version = "0.21.2"
|
|
1566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1567
|
+
checksum = "ff5d4c0d8331a9d15ab34bd8cd7c11b6512f07e7e0a7f5a63350c2632635bf0b"
|
|
1568
|
+
dependencies = [
|
|
1569
|
+
"contextual",
|
|
1570
|
+
"educe 0.4.23",
|
|
1571
|
+
"futures",
|
|
1572
|
+
"indexmap 2.12.1",
|
|
1573
|
+
"iref",
|
|
1574
|
+
"json-ld-context-processing",
|
|
1575
|
+
"json-ld-core",
|
|
1576
|
+
"json-ld-syntax",
|
|
1577
|
+
"json-syntax",
|
|
1578
|
+
"langtag",
|
|
1579
|
+
"mown",
|
|
1580
|
+
"rdf-types",
|
|
1581
|
+
"thiserror 1.0.69",
|
|
1582
|
+
]
|
|
1583
|
+
|
|
1584
|
+
[[package]]
|
|
1585
|
+
name = "json-ld-serialization"
|
|
1586
|
+
version = "0.21.2"
|
|
1587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
|
+
checksum = "344f0a6042745d76a358b808878ae0d125a472de30b3eabc9eb82c6cf7f0c23e"
|
|
1589
|
+
dependencies = [
|
|
1590
|
+
"indexmap 2.12.1",
|
|
1591
|
+
"iref",
|
|
1592
|
+
"json-ld-core",
|
|
1593
|
+
"json-syntax",
|
|
1594
|
+
"linked-data",
|
|
1595
|
+
"rdf-types",
|
|
1596
|
+
"thiserror 1.0.69",
|
|
1597
|
+
"xsd-types",
|
|
1598
|
+
]
|
|
1599
|
+
|
|
1600
|
+
[[package]]
|
|
1601
|
+
name = "json-ld-syntax"
|
|
1602
|
+
version = "0.21.2"
|
|
1603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1604
|
+
checksum = "fbff6d43084d4c04c3ffbdcd8031dd187c4a8c6f43d5c5585be230949c573747"
|
|
1605
|
+
dependencies = [
|
|
1606
|
+
"contextual",
|
|
1607
|
+
"decoded-char",
|
|
1608
|
+
"educe 0.4.23",
|
|
1609
|
+
"hashbrown 0.13.2",
|
|
1610
|
+
"indexmap 2.12.1",
|
|
1611
|
+
"iref",
|
|
1612
|
+
"json-syntax",
|
|
1613
|
+
"langtag",
|
|
1614
|
+
"locspan",
|
|
1615
|
+
"rdf-types",
|
|
1616
|
+
"smallvec",
|
|
1617
|
+
"thiserror 1.0.69",
|
|
1618
|
+
]
|
|
1619
|
+
|
|
1620
|
+
[[package]]
|
|
1621
|
+
name = "json-number"
|
|
1622
|
+
version = "0.4.9"
|
|
1623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1624
|
+
checksum = "66994b2bac615128d07a1e4527ad29e98b004dd1a1769e7b8fbc1173ccf43006"
|
|
1625
|
+
dependencies = [
|
|
1626
|
+
"lexical",
|
|
1627
|
+
"ryu-js",
|
|
1628
|
+
"smallvec",
|
|
1629
|
+
]
|
|
1630
|
+
|
|
1631
|
+
[[package]]
|
|
1632
|
+
name = "json-syntax"
|
|
1633
|
+
version = "0.12.5"
|
|
1634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1635
|
+
checksum = "044a68aba3f96d712f492b72be25e10f96201eaaca3207a7d6e68d6d5105fda9"
|
|
1636
|
+
dependencies = [
|
|
1637
|
+
"contextual",
|
|
1638
|
+
"decoded-char",
|
|
1639
|
+
"hashbrown 0.12.3",
|
|
1640
|
+
"indexmap 1.9.3",
|
|
1641
|
+
"json-number",
|
|
1642
|
+
"locspan",
|
|
1643
|
+
"locspan-derive",
|
|
1644
|
+
"ryu-js",
|
|
1645
|
+
"smallstr",
|
|
1646
|
+
"smallvec",
|
|
1647
|
+
"utf8-decode",
|
|
1648
|
+
]
|
|
1649
|
+
|
|
1650
|
+
[[package]]
|
|
1651
|
+
name = "langtag"
|
|
1652
|
+
version = "0.4.0"
|
|
1653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1654
|
+
checksum = "9ecb4c689a30e48ebeaa14237f34037e300dd072e6ad21a9ec72e810ff3c6600"
|
|
1655
|
+
dependencies = [
|
|
1656
|
+
"static-regular-grammar",
|
|
1657
|
+
"thiserror 1.0.69",
|
|
1658
|
+
]
|
|
1659
|
+
|
|
1660
|
+
[[package]]
|
|
1661
|
+
name = "lazy_static"
|
|
1662
|
+
version = "1.5.0"
|
|
1663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1664
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1665
|
+
|
|
1666
|
+
[[package]]
|
|
1667
|
+
name = "lexical"
|
|
1668
|
+
version = "7.0.5"
|
|
1669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1670
|
+
checksum = "1bc8a009b2ff1f419ccc62706f04fe0ca6e67b37460513964a3dfdb919bb37d6"
|
|
1671
|
+
dependencies = [
|
|
1672
|
+
"lexical-core",
|
|
1673
|
+
]
|
|
1674
|
+
|
|
1675
|
+
[[package]]
|
|
1676
|
+
name = "lexical-core"
|
|
1677
|
+
version = "1.0.6"
|
|
1678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1679
|
+
checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
|
|
1680
|
+
dependencies = [
|
|
1681
|
+
"lexical-parse-float",
|
|
1682
|
+
"lexical-parse-integer",
|
|
1683
|
+
"lexical-util",
|
|
1684
|
+
"lexical-write-float",
|
|
1685
|
+
"lexical-write-integer",
|
|
1686
|
+
]
|
|
1687
|
+
|
|
1688
|
+
[[package]]
|
|
1689
|
+
name = "lexical-parse-float"
|
|
1690
|
+
version = "1.0.6"
|
|
1691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1692
|
+
checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
|
|
1693
|
+
dependencies = [
|
|
1694
|
+
"lexical-parse-integer",
|
|
1695
|
+
"lexical-util",
|
|
1696
|
+
]
|
|
1697
|
+
|
|
1698
|
+
[[package]]
|
|
1699
|
+
name = "lexical-parse-integer"
|
|
1700
|
+
version = "1.0.6"
|
|
1701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1702
|
+
checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
|
|
1703
|
+
dependencies = [
|
|
1704
|
+
"lexical-util",
|
|
1705
|
+
]
|
|
1706
|
+
|
|
1707
|
+
[[package]]
|
|
1708
|
+
name = "lexical-util"
|
|
1709
|
+
version = "1.0.7"
|
|
1710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1711
|
+
checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
|
|
1712
|
+
|
|
1713
|
+
[[package]]
|
|
1714
|
+
name = "lexical-write-float"
|
|
1715
|
+
version = "1.0.6"
|
|
1716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1717
|
+
checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
|
|
1718
|
+
dependencies = [
|
|
1719
|
+
"lexical-util",
|
|
1720
|
+
"lexical-write-integer",
|
|
1721
|
+
]
|
|
1722
|
+
|
|
1723
|
+
[[package]]
|
|
1724
|
+
name = "lexical-write-integer"
|
|
1725
|
+
version = "1.0.6"
|
|
1726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1727
|
+
checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
|
|
1728
|
+
dependencies = [
|
|
1729
|
+
"lexical-util",
|
|
1730
|
+
]
|
|
1731
|
+
|
|
1732
|
+
[[package]]
|
|
1733
|
+
name = "libc"
|
|
1734
|
+
version = "0.2.179"
|
|
1735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1736
|
+
checksum = "c5a2d376baa530d1238d133232d15e239abad80d05838b4b59354e5268af431f"
|
|
1737
|
+
|
|
1738
|
+
[[package]]
|
|
1739
|
+
name = "libloading"
|
|
1740
|
+
version = "0.8.9"
|
|
1741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1742
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
1743
|
+
dependencies = [
|
|
1744
|
+
"cfg-if",
|
|
1745
|
+
"windows-link",
|
|
1746
|
+
]
|
|
1747
|
+
|
|
1748
|
+
[[package]]
|
|
1749
|
+
name = "linked-data"
|
|
1750
|
+
version = "0.1.2"
|
|
1751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1752
|
+
checksum = "04fd672ff31f4a6007acbdd33e1b65e1144081ec09b4189b3d20da3997603e90"
|
|
1753
|
+
dependencies = [
|
|
1754
|
+
"educe 0.4.23",
|
|
1755
|
+
"im",
|
|
1756
|
+
"iref",
|
|
1757
|
+
"json-syntax",
|
|
1758
|
+
"linked-data-derive",
|
|
1759
|
+
"rdf-types",
|
|
1760
|
+
"serde",
|
|
1761
|
+
"static-iref",
|
|
1762
|
+
"thiserror 1.0.69",
|
|
1763
|
+
"xsd-types",
|
|
1764
|
+
]
|
|
1765
|
+
|
|
1766
|
+
[[package]]
|
|
1767
|
+
name = "linked-data-derive"
|
|
1768
|
+
version = "0.1.0"
|
|
1769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1770
|
+
checksum = "887a1903665b47c2dcff59682d8de1be46813819ae0337d8eaa885035762fbee"
|
|
1771
|
+
dependencies = [
|
|
1772
|
+
"iref",
|
|
1773
|
+
"proc-macro-error",
|
|
1774
|
+
"proc-macro2",
|
|
1775
|
+
"quote",
|
|
1776
|
+
"static-iref",
|
|
1777
|
+
"syn 2.0.113",
|
|
1778
|
+
"thiserror 1.0.69",
|
|
1779
|
+
]
|
|
1780
|
+
|
|
1781
|
+
[[package]]
|
|
1782
|
+
name = "linux-raw-sys"
|
|
1783
|
+
version = "0.11.0"
|
|
1784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1785
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
1786
|
+
|
|
1787
|
+
[[package]]
|
|
1788
|
+
name = "litemap"
|
|
1789
|
+
version = "0.8.1"
|
|
1790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1791
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
1792
|
+
|
|
1793
|
+
[[package]]
|
|
1794
|
+
name = "lock_api"
|
|
1795
|
+
version = "0.4.14"
|
|
1796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1797
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1798
|
+
dependencies = [
|
|
1799
|
+
"scopeguard",
|
|
1800
|
+
]
|
|
1801
|
+
|
|
1802
|
+
[[package]]
|
|
1803
|
+
name = "locspan"
|
|
1804
|
+
version = "0.8.2"
|
|
1805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1806
|
+
checksum = "33890449fcfac88e94352092944bf321f55e5deb4e289a6f51c87c55731200a0"
|
|
1807
|
+
|
|
1808
|
+
[[package]]
|
|
1809
|
+
name = "locspan-derive"
|
|
1810
|
+
version = "0.6.0"
|
|
1811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1812
|
+
checksum = "e88991223b049a3d29ca1f60c05639581336a0f3ee4bf8a659dddecc11c4961a"
|
|
1813
|
+
dependencies = [
|
|
1814
|
+
"proc-macro-error",
|
|
1815
|
+
"proc-macro2",
|
|
1816
|
+
"quote",
|
|
1817
|
+
"syn 1.0.109",
|
|
1818
|
+
]
|
|
1819
|
+
|
|
1820
|
+
[[package]]
|
|
1821
|
+
name = "log"
|
|
1822
|
+
version = "0.4.29"
|
|
1823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1824
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1825
|
+
|
|
1826
|
+
[[package]]
|
|
1827
|
+
name = "lru-slab"
|
|
1828
|
+
version = "0.1.2"
|
|
1829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1830
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1831
|
+
|
|
1832
|
+
[[package]]
|
|
1833
|
+
name = "md-5"
|
|
1834
|
+
version = "0.10.6"
|
|
1835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1836
|
+
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
|
1837
|
+
dependencies = [
|
|
1838
|
+
"cfg-if",
|
|
1839
|
+
"digest",
|
|
1840
|
+
]
|
|
1841
|
+
|
|
1842
|
+
[[package]]
|
|
1843
|
+
name = "memchr"
|
|
1844
|
+
version = "2.7.6"
|
|
1845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1846
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
1847
|
+
|
|
1848
|
+
[[package]]
|
|
1849
|
+
name = "memoffset"
|
|
1850
|
+
version = "0.9.1"
|
|
1851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1852
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1853
|
+
dependencies = [
|
|
1854
|
+
"autocfg",
|
|
1855
|
+
]
|
|
1856
|
+
|
|
1857
|
+
[[package]]
|
|
1858
|
+
name = "mime"
|
|
1859
|
+
version = "0.3.17"
|
|
1860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1861
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1862
|
+
|
|
1863
|
+
[[package]]
|
|
1864
|
+
name = "minimal-lexical"
|
|
1865
|
+
version = "0.2.1"
|
|
1866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1867
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1868
|
+
|
|
1869
|
+
[[package]]
|
|
1870
|
+
name = "mio"
|
|
1871
|
+
version = "1.1.1"
|
|
1872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1873
|
+
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
1874
|
+
dependencies = [
|
|
1875
|
+
"libc",
|
|
1876
|
+
"wasi",
|
|
1877
|
+
"windows-sys 0.61.2",
|
|
1878
|
+
]
|
|
1879
|
+
|
|
1880
|
+
[[package]]
|
|
1881
|
+
name = "mown"
|
|
1882
|
+
version = "0.2.2"
|
|
1883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1884
|
+
checksum = "e7627d8bbeb17edbf1c3f74b21488e4af680040da89713b4217d0010e9cbd97e"
|
|
1885
|
+
|
|
1886
|
+
[[package]]
|
|
1887
|
+
name = "nom"
|
|
1888
|
+
version = "7.1.3"
|
|
1889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1890
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
1891
|
+
dependencies = [
|
|
1892
|
+
"memchr",
|
|
1893
|
+
"minimal-lexical",
|
|
1894
|
+
]
|
|
1895
|
+
|
|
1896
|
+
[[package]]
|
|
1897
|
+
name = "ntest"
|
|
1898
|
+
version = "0.9.5"
|
|
1899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1900
|
+
checksum = "54d1aa56874c2152c24681ed0df95ee155cc06c5c61b78e2d1e8c0cae8bc5326"
|
|
1901
|
+
dependencies = [
|
|
1902
|
+
"ntest_test_cases",
|
|
1903
|
+
"ntest_timeout",
|
|
1904
|
+
]
|
|
1905
|
+
|
|
1906
|
+
[[package]]
|
|
1907
|
+
name = "ntest_test_cases"
|
|
1908
|
+
version = "0.9.5"
|
|
1909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1910
|
+
checksum = "6913433c6319ef9b2df316bb8e3db864a41724c2bb8f12555e07dc4ec69d3db1"
|
|
1911
|
+
dependencies = [
|
|
1912
|
+
"proc-macro2",
|
|
1913
|
+
"quote",
|
|
1914
|
+
"syn 1.0.109",
|
|
1915
|
+
]
|
|
1916
|
+
|
|
1917
|
+
[[package]]
|
|
1918
|
+
name = "ntest_timeout"
|
|
1919
|
+
version = "0.9.5"
|
|
1920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1921
|
+
checksum = "9224be3459a0c1d6e9b0f42ab0e76e98b29aef5aba33c0487dfcf47ea08b5150"
|
|
1922
|
+
dependencies = [
|
|
1923
|
+
"proc-macro-crate",
|
|
1924
|
+
"proc-macro2",
|
|
1925
|
+
"quote",
|
|
1926
|
+
"syn 1.0.109",
|
|
1927
|
+
]
|
|
1928
|
+
|
|
1929
|
+
[[package]]
|
|
1930
|
+
name = "num-bigint"
|
|
1931
|
+
version = "0.4.6"
|
|
1932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1933
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
1934
|
+
dependencies = [
|
|
1935
|
+
"num-integer",
|
|
1936
|
+
"num-traits",
|
|
1937
|
+
]
|
|
1938
|
+
|
|
1939
|
+
[[package]]
|
|
1940
|
+
name = "num-conv"
|
|
1941
|
+
version = "0.1.0"
|
|
1942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1943
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
1944
|
+
|
|
1945
|
+
[[package]]
|
|
1946
|
+
name = "num-integer"
|
|
1947
|
+
version = "0.1.46"
|
|
1948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1949
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1950
|
+
dependencies = [
|
|
1951
|
+
"num-traits",
|
|
1952
|
+
]
|
|
1953
|
+
|
|
1954
|
+
[[package]]
|
|
1955
|
+
name = "num-rational"
|
|
1956
|
+
version = "0.4.2"
|
|
1957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1958
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
1959
|
+
dependencies = [
|
|
1960
|
+
"num-bigint",
|
|
1961
|
+
"num-integer",
|
|
1962
|
+
"num-traits",
|
|
1963
|
+
]
|
|
1964
|
+
|
|
1965
|
+
[[package]]
|
|
1966
|
+
name = "num-traits"
|
|
1967
|
+
version = "0.2.19"
|
|
1968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1969
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1970
|
+
dependencies = [
|
|
1971
|
+
"autocfg",
|
|
1972
|
+
]
|
|
1973
|
+
|
|
1974
|
+
[[package]]
|
|
1975
|
+
name = "once_cell"
|
|
1976
|
+
version = "1.21.3"
|
|
1977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1978
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1979
|
+
|
|
1980
|
+
[[package]]
|
|
1981
|
+
name = "once_cell_polyfill"
|
|
1982
|
+
version = "1.70.2"
|
|
1983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1984
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
1985
|
+
|
|
1986
|
+
[[package]]
|
|
1987
|
+
name = "ontoenv"
|
|
1988
|
+
version = "0.5.0-a2"
|
|
1989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1990
|
+
checksum = "a523a769c5804898caf98a0ae8f986284fe23dcc9a09ae9529783dbb29cfcc4b"
|
|
1991
|
+
dependencies = [
|
|
1992
|
+
"anyhow",
|
|
1993
|
+
"blake3",
|
|
1994
|
+
"chrono",
|
|
1995
|
+
"clap",
|
|
1996
|
+
"derive_builder",
|
|
1997
|
+
"env_logger",
|
|
1998
|
+
"fs2",
|
|
1999
|
+
"globset",
|
|
2000
|
+
"json-ld",
|
|
2001
|
+
"lazy_static",
|
|
2002
|
+
"log",
|
|
2003
|
+
"oxigraph",
|
|
2004
|
+
"petgraph",
|
|
2005
|
+
"pretty-bytes",
|
|
2006
|
+
"rdf5d",
|
|
2007
|
+
"regex",
|
|
2008
|
+
"reqwest",
|
|
2009
|
+
"serde",
|
|
2010
|
+
"serde_json",
|
|
2011
|
+
"serde_regex",
|
|
2012
|
+
"serde_with",
|
|
2013
|
+
"tempdir",
|
|
2014
|
+
"tempfile",
|
|
2015
|
+
"url",
|
|
2016
|
+
"walkdir",
|
|
2017
|
+
]
|
|
2018
|
+
|
|
2019
|
+
[[package]]
|
|
2020
|
+
name = "ordered-float"
|
|
2021
|
+
version = "3.9.2"
|
|
2022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2023
|
+
checksum = "f1e1c390732d15f1d48471625cd92d154e66db2c56645e29a9cd26f4699f72dc"
|
|
2024
|
+
dependencies = [
|
|
2025
|
+
"num-traits",
|
|
2026
|
+
]
|
|
2027
|
+
|
|
2028
|
+
[[package]]
|
|
2029
|
+
name = "owning_ref"
|
|
2030
|
+
version = "0.4.1"
|
|
2031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2032
|
+
checksum = "6ff55baddef9e4ad00f88b6c743a2a8062d4c6ade126c2a528644b8e444d52ce"
|
|
2033
|
+
dependencies = [
|
|
2034
|
+
"stable_deref_trait",
|
|
2035
|
+
]
|
|
2036
|
+
|
|
2037
|
+
[[package]]
|
|
2038
|
+
name = "oxigraph"
|
|
2039
|
+
version = "0.5.3"
|
|
2040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2041
|
+
checksum = "9af8920323420fe32d9da1deb5e4b01ed84d539d4651878dd63a1c8db5dbd7ac"
|
|
2042
|
+
dependencies = [
|
|
2043
|
+
"dashmap",
|
|
2044
|
+
"getrandom 0.3.4",
|
|
2045
|
+
"libc",
|
|
2046
|
+
"oxiri",
|
|
2047
|
+
"oxrdf",
|
|
2048
|
+
"oxrdfio",
|
|
2049
|
+
"oxrocksdb-sys",
|
|
2050
|
+
"oxsdatatypes",
|
|
2051
|
+
"rand 0.9.2",
|
|
2052
|
+
"rustc-hash",
|
|
2053
|
+
"siphasher",
|
|
2054
|
+
"sparesults",
|
|
2055
|
+
"spareval",
|
|
2056
|
+
"spargebra",
|
|
2057
|
+
"thiserror 2.0.17",
|
|
2058
|
+
]
|
|
2059
|
+
|
|
2060
|
+
[[package]]
|
|
2061
|
+
name = "oxilangtag"
|
|
2062
|
+
version = "0.1.5"
|
|
2063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2064
|
+
checksum = "23f3f87617a86af77fa3691e6350483e7154c2ead9f1261b75130e21ca0f8acb"
|
|
2065
|
+
dependencies = [
|
|
2066
|
+
"serde",
|
|
2067
|
+
]
|
|
2068
|
+
|
|
2069
|
+
[[package]]
|
|
2070
|
+
name = "oxiri"
|
|
2071
|
+
version = "0.2.11"
|
|
2072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2073
|
+
checksum = "54b4ed3a7192fa19f5f48f99871f2755047fabefd7f222f12a1df1773796a102"
|
|
2074
|
+
|
|
2075
|
+
[[package]]
|
|
2076
|
+
name = "oxjsonld"
|
|
2077
|
+
version = "0.2.1"
|
|
2078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2079
|
+
checksum = "e5b44046d987eafa6762dffa7f51cb7ac4fbff371fcc0e8e57060b5c478871c0"
|
|
2080
|
+
dependencies = [
|
|
2081
|
+
"json-event-parser",
|
|
2082
|
+
"oxiri",
|
|
2083
|
+
"oxrdf",
|
|
2084
|
+
"thiserror 2.0.17",
|
|
2085
|
+
]
|
|
2086
|
+
|
|
2087
|
+
[[package]]
|
|
2088
|
+
name = "oxrdf"
|
|
2089
|
+
version = "0.3.1"
|
|
2090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2091
|
+
checksum = "380cb0b0f0b7c38c5c9f3f5a90b5a7e8e89c751b3f087c4d16101c16a221cf16"
|
|
2092
|
+
dependencies = [
|
|
2093
|
+
"oxilangtag",
|
|
2094
|
+
"oxiri",
|
|
2095
|
+
"oxsdatatypes",
|
|
2096
|
+
"rand 0.9.2",
|
|
2097
|
+
"serde",
|
|
2098
|
+
"thiserror 2.0.17",
|
|
2099
|
+
]
|
|
2100
|
+
|
|
2101
|
+
[[package]]
|
|
2102
|
+
name = "oxrdfio"
|
|
2103
|
+
version = "0.2.1"
|
|
2104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2105
|
+
checksum = "19c493572957ed196c076ad30c778215f85d28530e56451cdb07f564dddabfcd"
|
|
2106
|
+
dependencies = [
|
|
2107
|
+
"oxjsonld",
|
|
2108
|
+
"oxrdf",
|
|
2109
|
+
"oxrdfxml",
|
|
2110
|
+
"oxttl",
|
|
2111
|
+
"thiserror 2.0.17",
|
|
2112
|
+
]
|
|
2113
|
+
|
|
2114
|
+
[[package]]
|
|
2115
|
+
name = "oxrdfxml"
|
|
2116
|
+
version = "0.2.1"
|
|
2117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2118
|
+
checksum = "0fdb40d6d81141e19b4898c8930e6b50c85b7155a2377b9ac1e62a9588f32b5f"
|
|
2119
|
+
dependencies = [
|
|
2120
|
+
"oxilangtag",
|
|
2121
|
+
"oxiri",
|
|
2122
|
+
"oxrdf",
|
|
2123
|
+
"quick-xml",
|
|
2124
|
+
"thiserror 2.0.17",
|
|
2125
|
+
]
|
|
2126
|
+
|
|
2127
|
+
[[package]]
|
|
2128
|
+
name = "oxrocksdb-sys"
|
|
2129
|
+
version = "0.5.3"
|
|
2130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2131
|
+
checksum = "c2c6487ecfdf9c2308e0d4be69d123cb76c8f89a35a196fb2010738801a4063b"
|
|
2132
|
+
dependencies = [
|
|
2133
|
+
"bindgen",
|
|
2134
|
+
"cc",
|
|
2135
|
+
]
|
|
2136
|
+
|
|
2137
|
+
[[package]]
|
|
2138
|
+
name = "oxsdatatypes"
|
|
2139
|
+
version = "0.2.2"
|
|
2140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2141
|
+
checksum = "06fa874d87eae638daae9b4e3198864fe2cce68589f227c0b2cf5b62b1530516"
|
|
2142
|
+
dependencies = [
|
|
2143
|
+
"thiserror 2.0.17",
|
|
2144
|
+
]
|
|
2145
|
+
|
|
2146
|
+
[[package]]
|
|
2147
|
+
name = "oxttl"
|
|
2148
|
+
version = "0.2.1"
|
|
2149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2150
|
+
checksum = "357f8c6b875ee108f3aa34249383c50bfda2c195a9d5e6178ba5ee53546e7225"
|
|
2151
|
+
dependencies = [
|
|
2152
|
+
"memchr",
|
|
2153
|
+
"oxilangtag",
|
|
2154
|
+
"oxiri",
|
|
2155
|
+
"oxrdf",
|
|
2156
|
+
"thiserror 2.0.17",
|
|
2157
|
+
]
|
|
2158
|
+
|
|
2159
|
+
[[package]]
|
|
2160
|
+
name = "papaya"
|
|
2161
|
+
version = "0.2.3"
|
|
2162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2163
|
+
checksum = "f92dd0b07c53a0a0c764db2ace8c541dc47320dad97c2200c2a637ab9dd2328f"
|
|
2164
|
+
dependencies = [
|
|
2165
|
+
"equivalent",
|
|
2166
|
+
"seize",
|
|
2167
|
+
]
|
|
2168
|
+
|
|
2169
|
+
[[package]]
|
|
2170
|
+
name = "parking_lot_core"
|
|
2171
|
+
version = "0.9.12"
|
|
2172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2173
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
2174
|
+
dependencies = [
|
|
2175
|
+
"cfg-if",
|
|
2176
|
+
"libc",
|
|
2177
|
+
"redox_syscall",
|
|
2178
|
+
"smallvec",
|
|
2179
|
+
"windows-link",
|
|
2180
|
+
]
|
|
2181
|
+
|
|
2182
|
+
[[package]]
|
|
2183
|
+
name = "paste"
|
|
2184
|
+
version = "1.0.15"
|
|
2185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2186
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
2187
|
+
|
|
2188
|
+
[[package]]
|
|
2189
|
+
name = "pct-str"
|
|
2190
|
+
version = "2.0.0"
|
|
2191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2192
|
+
checksum = "bf1bdcc492c285a50bed60860dfa00b50baf1f60c73c7d6b435b01a2a11fd6ff"
|
|
2193
|
+
dependencies = [
|
|
2194
|
+
"thiserror 1.0.69",
|
|
2195
|
+
"utf8-decode",
|
|
2196
|
+
]
|
|
2197
|
+
|
|
2198
|
+
[[package]]
|
|
2199
|
+
name = "peg"
|
|
2200
|
+
version = "0.8.5"
|
|
2201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2202
|
+
checksum = "9928cfca101b36ec5163e70049ee5368a8a1c3c6efc9ca9c5f9cc2f816152477"
|
|
2203
|
+
dependencies = [
|
|
2204
|
+
"peg-macros",
|
|
2205
|
+
"peg-runtime",
|
|
2206
|
+
]
|
|
2207
|
+
|
|
2208
|
+
[[package]]
|
|
2209
|
+
name = "peg-macros"
|
|
2210
|
+
version = "0.8.5"
|
|
2211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2212
|
+
checksum = "6298ab04c202fa5b5d52ba03269fb7b74550b150323038878fe6c372d8280f71"
|
|
2213
|
+
dependencies = [
|
|
2214
|
+
"peg-runtime",
|
|
2215
|
+
"proc-macro2",
|
|
2216
|
+
"quote",
|
|
2217
|
+
]
|
|
2218
|
+
|
|
2219
|
+
[[package]]
|
|
2220
|
+
name = "peg-runtime"
|
|
2221
|
+
version = "0.8.5"
|
|
2222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2223
|
+
checksum = "132dca9b868d927b35b5dd728167b2dee150eb1ad686008fc71ccb298b776fca"
|
|
2224
|
+
|
|
2225
|
+
[[package]]
|
|
2226
|
+
name = "percent-encoding"
|
|
2227
|
+
version = "2.3.2"
|
|
2228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2229
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
2230
|
+
|
|
2231
|
+
[[package]]
|
|
2232
|
+
name = "permutohedron"
|
|
2233
|
+
version = "0.2.4"
|
|
2234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2235
|
+
checksum = "b687ff7b5da449d39e418ad391e5e08da53ec334903ddbb921db208908fc372c"
|
|
2236
|
+
|
|
2237
|
+
[[package]]
|
|
2238
|
+
name = "pest"
|
|
2239
|
+
version = "2.8.5"
|
|
2240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2241
|
+
checksum = "2c9eb05c21a464ea704b53158d358a31e6425db2f63a1a7312268b05fe2b75f7"
|
|
2242
|
+
dependencies = [
|
|
2243
|
+
"memchr",
|
|
2244
|
+
"ucd-trie",
|
|
2245
|
+
]
|
|
2246
|
+
|
|
2247
|
+
[[package]]
|
|
2248
|
+
name = "pest_derive"
|
|
2249
|
+
version = "2.8.5"
|
|
2250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2251
|
+
checksum = "68f9dbced329c441fa79d80472764b1a2c7e57123553b8519b36663a2fb234ed"
|
|
2252
|
+
dependencies = [
|
|
2253
|
+
"pest",
|
|
2254
|
+
"pest_generator",
|
|
2255
|
+
]
|
|
2256
|
+
|
|
2257
|
+
[[package]]
|
|
2258
|
+
name = "pest_generator"
|
|
2259
|
+
version = "2.8.5"
|
|
2260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2261
|
+
checksum = "3bb96d5051a78f44f43c8f712d8e810adb0ebf923fc9ed2655a7f66f63ba8ee5"
|
|
2262
|
+
dependencies = [
|
|
2263
|
+
"pest",
|
|
2264
|
+
"pest_meta",
|
|
2265
|
+
"proc-macro2",
|
|
2266
|
+
"quote",
|
|
2267
|
+
"syn 2.0.113",
|
|
2268
|
+
]
|
|
2269
|
+
|
|
2270
|
+
[[package]]
|
|
2271
|
+
name = "pest_meta"
|
|
2272
|
+
version = "2.8.5"
|
|
2273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2274
|
+
checksum = "602113b5b5e8621770cfd490cfd90b9f84ab29bd2b0e49ad83eb6d186cef2365"
|
|
2275
|
+
dependencies = [
|
|
2276
|
+
"pest",
|
|
2277
|
+
"sha2",
|
|
2278
|
+
]
|
|
2279
|
+
|
|
2280
|
+
[[package]]
|
|
2281
|
+
name = "petgraph"
|
|
2282
|
+
version = "0.8.3"
|
|
2283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2284
|
+
checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
|
|
2285
|
+
dependencies = [
|
|
2286
|
+
"fixedbitset",
|
|
2287
|
+
"hashbrown 0.15.5",
|
|
2288
|
+
"indexmap 2.12.1",
|
|
2289
|
+
"rayon",
|
|
2290
|
+
"serde",
|
|
2291
|
+
"serde_derive",
|
|
2292
|
+
]
|
|
2293
|
+
|
|
2294
|
+
[[package]]
|
|
2295
|
+
name = "pin-project-lite"
|
|
2296
|
+
version = "0.2.16"
|
|
2297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2298
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
2299
|
+
|
|
2300
|
+
[[package]]
|
|
2301
|
+
name = "pin-utils"
|
|
2302
|
+
version = "0.1.0"
|
|
2303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2304
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
2305
|
+
|
|
2306
|
+
[[package]]
|
|
2307
|
+
name = "pkg-config"
|
|
2308
|
+
version = "0.3.32"
|
|
2309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2310
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
2311
|
+
|
|
2312
|
+
[[package]]
|
|
2313
|
+
name = "portable-atomic"
|
|
2314
|
+
version = "1.13.0"
|
|
2315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2316
|
+
checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
|
|
2317
|
+
|
|
2318
|
+
[[package]]
|
|
2319
|
+
name = "portable-atomic-util"
|
|
2320
|
+
version = "0.2.4"
|
|
2321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2322
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
|
2323
|
+
dependencies = [
|
|
2324
|
+
"portable-atomic",
|
|
2325
|
+
]
|
|
2326
|
+
|
|
2327
|
+
[[package]]
|
|
2328
|
+
name = "potential_utf"
|
|
2329
|
+
version = "0.1.4"
|
|
2330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2331
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
2332
|
+
dependencies = [
|
|
2333
|
+
"zerovec",
|
|
2334
|
+
]
|
|
2335
|
+
|
|
2336
|
+
[[package]]
|
|
2337
|
+
name = "powerfmt"
|
|
2338
|
+
version = "0.2.0"
|
|
2339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2340
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
2341
|
+
|
|
2342
|
+
[[package]]
|
|
2343
|
+
name = "ppv-lite86"
|
|
2344
|
+
version = "0.2.21"
|
|
2345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2346
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2347
|
+
dependencies = [
|
|
2348
|
+
"zerocopy",
|
|
2349
|
+
]
|
|
2350
|
+
|
|
2351
|
+
[[package]]
|
|
2352
|
+
name = "pretty-bytes"
|
|
2353
|
+
version = "0.2.2"
|
|
2354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2355
|
+
checksum = "009d6edd2c1dbf2e1c0cd48a2f7766e03498d49ada7109a01c6911815c685316"
|
|
2356
|
+
dependencies = [
|
|
2357
|
+
"atty",
|
|
2358
|
+
"getopts",
|
|
2359
|
+
]
|
|
2360
|
+
|
|
2361
|
+
[[package]]
|
|
2362
|
+
name = "pretty_dtoa"
|
|
2363
|
+
version = "0.3.0"
|
|
2364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2365
|
+
checksum = "a239bcdfda2c685fda1add3b4695c06225f50075e3cfb5b954e91545587edff2"
|
|
2366
|
+
dependencies = [
|
|
2367
|
+
"ryu_floating_decimal",
|
|
2368
|
+
]
|
|
2369
|
+
|
|
2370
|
+
[[package]]
|
|
2371
|
+
name = "prettyplease"
|
|
2372
|
+
version = "0.2.37"
|
|
2373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2374
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
2375
|
+
dependencies = [
|
|
2376
|
+
"proc-macro2",
|
|
2377
|
+
"syn 2.0.113",
|
|
2378
|
+
]
|
|
2379
|
+
|
|
2380
|
+
[[package]]
|
|
2381
|
+
name = "proc-macro-crate"
|
|
2382
|
+
version = "3.4.0"
|
|
2383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2384
|
+
checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
|
|
2385
|
+
dependencies = [
|
|
2386
|
+
"toml_edit",
|
|
2387
|
+
]
|
|
2388
|
+
|
|
2389
|
+
[[package]]
|
|
2390
|
+
name = "proc-macro-error"
|
|
2391
|
+
version = "1.0.4"
|
|
2392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2393
|
+
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
|
|
2394
|
+
dependencies = [
|
|
2395
|
+
"proc-macro-error-attr",
|
|
2396
|
+
"proc-macro2",
|
|
2397
|
+
"quote",
|
|
2398
|
+
"syn 1.0.109",
|
|
2399
|
+
"version_check",
|
|
2400
|
+
]
|
|
2401
|
+
|
|
2402
|
+
[[package]]
|
|
2403
|
+
name = "proc-macro-error-attr"
|
|
2404
|
+
version = "1.0.4"
|
|
2405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2406
|
+
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
|
|
2407
|
+
dependencies = [
|
|
2408
|
+
"proc-macro2",
|
|
2409
|
+
"quote",
|
|
2410
|
+
"version_check",
|
|
2411
|
+
]
|
|
2412
|
+
|
|
2413
|
+
[[package]]
|
|
2414
|
+
name = "proc-macro2"
|
|
2415
|
+
version = "1.0.104"
|
|
2416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2417
|
+
checksum = "9695f8df41bb4f3d222c95a67532365f569318332d03d5f3f67f37b20e6ebdf0"
|
|
2418
|
+
dependencies = [
|
|
2419
|
+
"unicode-ident",
|
|
2420
|
+
]
|
|
2421
|
+
|
|
2422
|
+
[[package]]
|
|
2423
|
+
name = "pyo3"
|
|
2424
|
+
version = "0.27.2"
|
|
2425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2426
|
+
checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
|
|
2427
|
+
dependencies = [
|
|
2428
|
+
"indoc",
|
|
2429
|
+
"libc",
|
|
2430
|
+
"memoffset",
|
|
2431
|
+
"once_cell",
|
|
2432
|
+
"portable-atomic",
|
|
2433
|
+
"pyo3-build-config",
|
|
2434
|
+
"pyo3-ffi",
|
|
2435
|
+
"pyo3-macros",
|
|
2436
|
+
"unindent",
|
|
2437
|
+
]
|
|
2438
|
+
|
|
2439
|
+
[[package]]
|
|
2440
|
+
name = "pyo3-build-config"
|
|
2441
|
+
version = "0.27.2"
|
|
2442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2443
|
+
checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
|
|
2444
|
+
dependencies = [
|
|
2445
|
+
"target-lexicon",
|
|
2446
|
+
]
|
|
2447
|
+
|
|
2448
|
+
[[package]]
|
|
2449
|
+
name = "pyo3-ffi"
|
|
2450
|
+
version = "0.27.2"
|
|
2451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2452
|
+
checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
|
|
2453
|
+
dependencies = [
|
|
2454
|
+
"libc",
|
|
2455
|
+
"pyo3-build-config",
|
|
2456
|
+
]
|
|
2457
|
+
|
|
2458
|
+
[[package]]
|
|
2459
|
+
name = "pyo3-macros"
|
|
2460
|
+
version = "0.27.2"
|
|
2461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2462
|
+
checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
|
|
2463
|
+
dependencies = [
|
|
2464
|
+
"proc-macro2",
|
|
2465
|
+
"pyo3-macros-backend",
|
|
2466
|
+
"quote",
|
|
2467
|
+
"syn 2.0.113",
|
|
2468
|
+
]
|
|
2469
|
+
|
|
2470
|
+
[[package]]
|
|
2471
|
+
name = "pyo3-macros-backend"
|
|
2472
|
+
version = "0.27.2"
|
|
2473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2474
|
+
checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
|
|
2475
|
+
dependencies = [
|
|
2476
|
+
"heck",
|
|
2477
|
+
"proc-macro2",
|
|
2478
|
+
"pyo3-build-config",
|
|
2479
|
+
"quote",
|
|
2480
|
+
"syn 2.0.113",
|
|
2481
|
+
]
|
|
2482
|
+
|
|
2483
|
+
[[package]]
|
|
2484
|
+
name = "python"
|
|
2485
|
+
version = "0.0.5"
|
|
2486
|
+
dependencies = [
|
|
2487
|
+
"ontoenv",
|
|
2488
|
+
"oxigraph",
|
|
2489
|
+
"pyo3",
|
|
2490
|
+
"serde_json",
|
|
2491
|
+
"shacl-ir",
|
|
2492
|
+
"shifty",
|
|
2493
|
+
"tempfile",
|
|
2494
|
+
]
|
|
2495
|
+
|
|
2496
|
+
[[package]]
|
|
2497
|
+
name = "quick-xml"
|
|
2498
|
+
version = "0.37.5"
|
|
2499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2500
|
+
checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
|
|
2501
|
+
dependencies = [
|
|
2502
|
+
"memchr",
|
|
2503
|
+
]
|
|
2504
|
+
|
|
2505
|
+
[[package]]
|
|
2506
|
+
name = "quinn"
|
|
2507
|
+
version = "0.11.9"
|
|
2508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2509
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
2510
|
+
dependencies = [
|
|
2511
|
+
"bytes",
|
|
2512
|
+
"cfg_aliases",
|
|
2513
|
+
"pin-project-lite",
|
|
2514
|
+
"quinn-proto",
|
|
2515
|
+
"quinn-udp",
|
|
2516
|
+
"rustc-hash",
|
|
2517
|
+
"rustls",
|
|
2518
|
+
"socket2",
|
|
2519
|
+
"thiserror 2.0.17",
|
|
2520
|
+
"tokio",
|
|
2521
|
+
"tracing",
|
|
2522
|
+
"web-time",
|
|
2523
|
+
]
|
|
2524
|
+
|
|
2525
|
+
[[package]]
|
|
2526
|
+
name = "quinn-proto"
|
|
2527
|
+
version = "0.11.13"
|
|
2528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2529
|
+
checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
|
|
2530
|
+
dependencies = [
|
|
2531
|
+
"bytes",
|
|
2532
|
+
"getrandom 0.3.4",
|
|
2533
|
+
"lru-slab",
|
|
2534
|
+
"rand 0.9.2",
|
|
2535
|
+
"ring",
|
|
2536
|
+
"rustc-hash",
|
|
2537
|
+
"rustls",
|
|
2538
|
+
"rustls-pki-types",
|
|
2539
|
+
"slab",
|
|
2540
|
+
"thiserror 2.0.17",
|
|
2541
|
+
"tinyvec",
|
|
2542
|
+
"tracing",
|
|
2543
|
+
"web-time",
|
|
2544
|
+
]
|
|
2545
|
+
|
|
2546
|
+
[[package]]
|
|
2547
|
+
name = "quinn-udp"
|
|
2548
|
+
version = "0.5.14"
|
|
2549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2550
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
2551
|
+
dependencies = [
|
|
2552
|
+
"cfg_aliases",
|
|
2553
|
+
"libc",
|
|
2554
|
+
"once_cell",
|
|
2555
|
+
"socket2",
|
|
2556
|
+
"tracing",
|
|
2557
|
+
"windows-sys 0.60.2",
|
|
2558
|
+
]
|
|
2559
|
+
|
|
2560
|
+
[[package]]
|
|
2561
|
+
name = "quote"
|
|
2562
|
+
version = "1.0.42"
|
|
2563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2564
|
+
checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
|
|
2565
|
+
dependencies = [
|
|
2566
|
+
"proc-macro2",
|
|
2567
|
+
]
|
|
2568
|
+
|
|
2569
|
+
[[package]]
|
|
2570
|
+
name = "r-efi"
|
|
2571
|
+
version = "5.3.0"
|
|
2572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2573
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2574
|
+
|
|
2575
|
+
[[package]]
|
|
2576
|
+
name = "rand"
|
|
2577
|
+
version = "0.4.6"
|
|
2578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2579
|
+
checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
|
|
2580
|
+
dependencies = [
|
|
2581
|
+
"fuchsia-cprng",
|
|
2582
|
+
"libc",
|
|
2583
|
+
"rand_core 0.3.1",
|
|
2584
|
+
"rdrand",
|
|
2585
|
+
"winapi",
|
|
2586
|
+
]
|
|
2587
|
+
|
|
2588
|
+
[[package]]
|
|
2589
|
+
name = "rand"
|
|
2590
|
+
version = "0.9.2"
|
|
2591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2592
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
2593
|
+
dependencies = [
|
|
2594
|
+
"rand_chacha",
|
|
2595
|
+
"rand_core 0.9.3",
|
|
2596
|
+
]
|
|
2597
|
+
|
|
2598
|
+
[[package]]
|
|
2599
|
+
name = "rand_chacha"
|
|
2600
|
+
version = "0.9.0"
|
|
2601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2602
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2603
|
+
dependencies = [
|
|
2604
|
+
"ppv-lite86",
|
|
2605
|
+
"rand_core 0.9.3",
|
|
2606
|
+
]
|
|
2607
|
+
|
|
2608
|
+
[[package]]
|
|
2609
|
+
name = "rand_core"
|
|
2610
|
+
version = "0.3.1"
|
|
2611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2612
|
+
checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
|
|
2613
|
+
dependencies = [
|
|
2614
|
+
"rand_core 0.4.2",
|
|
2615
|
+
]
|
|
2616
|
+
|
|
2617
|
+
[[package]]
|
|
2618
|
+
name = "rand_core"
|
|
2619
|
+
version = "0.4.2"
|
|
2620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2621
|
+
checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
|
|
2622
|
+
|
|
2623
|
+
[[package]]
|
|
2624
|
+
name = "rand_core"
|
|
2625
|
+
version = "0.6.4"
|
|
2626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2627
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2628
|
+
|
|
2629
|
+
[[package]]
|
|
2630
|
+
name = "rand_core"
|
|
2631
|
+
version = "0.9.3"
|
|
2632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2633
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
2634
|
+
dependencies = [
|
|
2635
|
+
"getrandom 0.3.4",
|
|
2636
|
+
]
|
|
2637
|
+
|
|
2638
|
+
[[package]]
|
|
2639
|
+
name = "rand_xoshiro"
|
|
2640
|
+
version = "0.6.0"
|
|
2641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2642
|
+
checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa"
|
|
2643
|
+
dependencies = [
|
|
2644
|
+
"rand_core 0.6.4",
|
|
2645
|
+
]
|
|
2646
|
+
|
|
2647
|
+
[[package]]
|
|
2648
|
+
name = "range-traits"
|
|
2649
|
+
version = "0.3.2"
|
|
2650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2651
|
+
checksum = "d20581732dd76fa913c7dff1a2412b714afe3573e94d41c34719de73337cc8ab"
|
|
2652
|
+
|
|
2653
|
+
[[package]]
|
|
2654
|
+
name = "raw-btree"
|
|
2655
|
+
version = "0.3.3"
|
|
2656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2657
|
+
checksum = "6bd1f6fba6db8161b6818f9061152e751b4d6030b39b561bbbb0153b36a6cfc5"
|
|
2658
|
+
|
|
2659
|
+
[[package]]
|
|
2660
|
+
name = "rayon"
|
|
2661
|
+
version = "1.11.0"
|
|
2662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2663
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
2664
|
+
dependencies = [
|
|
2665
|
+
"either",
|
|
2666
|
+
"rayon-core",
|
|
2667
|
+
]
|
|
2668
|
+
|
|
2669
|
+
[[package]]
|
|
2670
|
+
name = "rayon-core"
|
|
2671
|
+
version = "1.13.0"
|
|
2672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2673
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
2674
|
+
dependencies = [
|
|
2675
|
+
"crossbeam-deque",
|
|
2676
|
+
"crossbeam-utils",
|
|
2677
|
+
]
|
|
2678
|
+
|
|
2679
|
+
[[package]]
|
|
2680
|
+
name = "rdf-types"
|
|
2681
|
+
version = "0.22.5"
|
|
2682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2683
|
+
checksum = "4ccfa6b3af8f44db8d700038d47a9e8c8cc4126cdcafc069e82116903420631d"
|
|
2684
|
+
dependencies = [
|
|
2685
|
+
"contextual",
|
|
2686
|
+
"educe 0.5.11",
|
|
2687
|
+
"indexmap 2.12.1",
|
|
2688
|
+
"iref",
|
|
2689
|
+
"langtag",
|
|
2690
|
+
"raw-btree",
|
|
2691
|
+
"replace_with",
|
|
2692
|
+
"slab",
|
|
2693
|
+
"static-iref",
|
|
2694
|
+
"thiserror 1.0.69",
|
|
2695
|
+
]
|
|
2696
|
+
|
|
2697
|
+
[[package]]
|
|
2698
|
+
name = "rdf5d"
|
|
2699
|
+
version = "0.5.0-a2"
|
|
2700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2701
|
+
checksum = "bc37c5a92b7ca1451f391452379ec96e3649c480498c3bf14de97c828dd89f10"
|
|
2702
|
+
dependencies = [
|
|
2703
|
+
"clap",
|
|
2704
|
+
"oxigraph",
|
|
2705
|
+
"zstd",
|
|
2706
|
+
]
|
|
2707
|
+
|
|
2708
|
+
[[package]]
|
|
2709
|
+
name = "rdrand"
|
|
2710
|
+
version = "0.4.0"
|
|
2711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2712
|
+
checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
|
|
2713
|
+
dependencies = [
|
|
2714
|
+
"rand_core 0.3.1",
|
|
2715
|
+
]
|
|
2716
|
+
|
|
2717
|
+
[[package]]
|
|
2718
|
+
name = "redox_syscall"
|
|
2719
|
+
version = "0.5.18"
|
|
2720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2721
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
2722
|
+
dependencies = [
|
|
2723
|
+
"bitflags",
|
|
2724
|
+
]
|
|
2725
|
+
|
|
2726
|
+
[[package]]
|
|
2727
|
+
name = "ref-cast"
|
|
2728
|
+
version = "1.0.25"
|
|
2729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2730
|
+
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
|
|
2731
|
+
dependencies = [
|
|
2732
|
+
"ref-cast-impl",
|
|
2733
|
+
]
|
|
2734
|
+
|
|
2735
|
+
[[package]]
|
|
2736
|
+
name = "ref-cast-impl"
|
|
2737
|
+
version = "1.0.25"
|
|
2738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2739
|
+
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
2740
|
+
dependencies = [
|
|
2741
|
+
"proc-macro2",
|
|
2742
|
+
"quote",
|
|
2743
|
+
"syn 2.0.113",
|
|
2744
|
+
]
|
|
2745
|
+
|
|
2746
|
+
[[package]]
|
|
2747
|
+
name = "regex"
|
|
2748
|
+
version = "1.12.2"
|
|
2749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2750
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
2751
|
+
dependencies = [
|
|
2752
|
+
"aho-corasick",
|
|
2753
|
+
"memchr",
|
|
2754
|
+
"regex-automata",
|
|
2755
|
+
"regex-syntax",
|
|
2756
|
+
]
|
|
2757
|
+
|
|
2758
|
+
[[package]]
|
|
2759
|
+
name = "regex-automata"
|
|
2760
|
+
version = "0.4.13"
|
|
2761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2762
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
2763
|
+
dependencies = [
|
|
2764
|
+
"aho-corasick",
|
|
2765
|
+
"memchr",
|
|
2766
|
+
"regex-syntax",
|
|
2767
|
+
]
|
|
2768
|
+
|
|
2769
|
+
[[package]]
|
|
2770
|
+
name = "regex-syntax"
|
|
2771
|
+
version = "0.8.8"
|
|
2772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2773
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
2774
|
+
|
|
2775
|
+
[[package]]
|
|
2776
|
+
name = "remove_dir_all"
|
|
2777
|
+
version = "0.5.3"
|
|
2778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2779
|
+
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
|
|
2780
|
+
dependencies = [
|
|
2781
|
+
"winapi",
|
|
2782
|
+
]
|
|
2783
|
+
|
|
2784
|
+
[[package]]
|
|
2785
|
+
name = "replace_with"
|
|
2786
|
+
version = "0.1.8"
|
|
2787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2788
|
+
checksum = "51743d3e274e2b18df81c4dc6caf8a5b8e15dbe799e0dca05c7617380094e884"
|
|
2789
|
+
|
|
2790
|
+
[[package]]
|
|
2791
|
+
name = "reqwest"
|
|
2792
|
+
version = "0.12.28"
|
|
2793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2794
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
2795
|
+
dependencies = [
|
|
2796
|
+
"base64",
|
|
2797
|
+
"bytes",
|
|
2798
|
+
"futures-channel",
|
|
2799
|
+
"futures-core",
|
|
2800
|
+
"futures-util",
|
|
2801
|
+
"http",
|
|
2802
|
+
"http-body",
|
|
2803
|
+
"http-body-util",
|
|
2804
|
+
"hyper",
|
|
2805
|
+
"hyper-rustls",
|
|
2806
|
+
"hyper-util",
|
|
2807
|
+
"js-sys",
|
|
2808
|
+
"log",
|
|
2809
|
+
"percent-encoding",
|
|
2810
|
+
"pin-project-lite",
|
|
2811
|
+
"quinn",
|
|
2812
|
+
"rustls",
|
|
2813
|
+
"rustls-pki-types",
|
|
2814
|
+
"serde",
|
|
2815
|
+
"serde_json",
|
|
2816
|
+
"serde_urlencoded",
|
|
2817
|
+
"sync_wrapper",
|
|
2818
|
+
"tokio",
|
|
2819
|
+
"tokio-rustls",
|
|
2820
|
+
"tower",
|
|
2821
|
+
"tower-http",
|
|
2822
|
+
"tower-service",
|
|
2823
|
+
"url",
|
|
2824
|
+
"wasm-bindgen",
|
|
2825
|
+
"wasm-bindgen-futures",
|
|
2826
|
+
"web-sys",
|
|
2827
|
+
"webpki-roots",
|
|
2828
|
+
]
|
|
2829
|
+
|
|
2830
|
+
[[package]]
|
|
2831
|
+
name = "ring"
|
|
2832
|
+
version = "0.17.14"
|
|
2833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2834
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2835
|
+
dependencies = [
|
|
2836
|
+
"cc",
|
|
2837
|
+
"cfg-if",
|
|
2838
|
+
"getrandom 0.2.16",
|
|
2839
|
+
"libc",
|
|
2840
|
+
"untrusted",
|
|
2841
|
+
"windows-sys 0.52.0",
|
|
2842
|
+
]
|
|
2843
|
+
|
|
2844
|
+
[[package]]
|
|
2845
|
+
name = "rustc-hash"
|
|
2846
|
+
version = "2.1.1"
|
|
2847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2848
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
2849
|
+
|
|
2850
|
+
[[package]]
|
|
2851
|
+
name = "rustix"
|
|
2852
|
+
version = "1.1.3"
|
|
2853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2854
|
+
checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
|
|
2855
|
+
dependencies = [
|
|
2856
|
+
"bitflags",
|
|
2857
|
+
"errno",
|
|
2858
|
+
"libc",
|
|
2859
|
+
"linux-raw-sys",
|
|
2860
|
+
"windows-sys 0.61.2",
|
|
2861
|
+
]
|
|
2862
|
+
|
|
2863
|
+
[[package]]
|
|
2864
|
+
name = "rustls"
|
|
2865
|
+
version = "0.23.35"
|
|
2866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2867
|
+
checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
|
|
2868
|
+
dependencies = [
|
|
2869
|
+
"once_cell",
|
|
2870
|
+
"ring",
|
|
2871
|
+
"rustls-pki-types",
|
|
2872
|
+
"rustls-webpki",
|
|
2873
|
+
"subtle",
|
|
2874
|
+
"zeroize",
|
|
2875
|
+
]
|
|
2876
|
+
|
|
2877
|
+
[[package]]
|
|
2878
|
+
name = "rustls-pki-types"
|
|
2879
|
+
version = "1.13.2"
|
|
2880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2881
|
+
checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282"
|
|
2882
|
+
dependencies = [
|
|
2883
|
+
"web-time",
|
|
2884
|
+
"zeroize",
|
|
2885
|
+
]
|
|
2886
|
+
|
|
2887
|
+
[[package]]
|
|
2888
|
+
name = "rustls-webpki"
|
|
2889
|
+
version = "0.103.8"
|
|
2890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2891
|
+
checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
|
|
2892
|
+
dependencies = [
|
|
2893
|
+
"ring",
|
|
2894
|
+
"rustls-pki-types",
|
|
2895
|
+
"untrusted",
|
|
2896
|
+
]
|
|
2897
|
+
|
|
2898
|
+
[[package]]
|
|
2899
|
+
name = "rustversion"
|
|
2900
|
+
version = "1.0.22"
|
|
2901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2902
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
2903
|
+
|
|
2904
|
+
[[package]]
|
|
2905
|
+
name = "ryu"
|
|
2906
|
+
version = "1.0.22"
|
|
2907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2908
|
+
checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
|
|
2909
|
+
|
|
2910
|
+
[[package]]
|
|
2911
|
+
name = "ryu-js"
|
|
2912
|
+
version = "0.2.2"
|
|
2913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2914
|
+
checksum = "6518fc26bced4d53678a22d6e423e9d8716377def84545fe328236e3af070e7f"
|
|
2915
|
+
|
|
2916
|
+
[[package]]
|
|
2917
|
+
name = "ryu_floating_decimal"
|
|
2918
|
+
version = "0.1.0"
|
|
2919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2920
|
+
checksum = "700de91d5fd6091442d00fdd9ee790af6d4f0f480562b0f5a1e8f59e90aafe73"
|
|
2921
|
+
|
|
2922
|
+
[[package]]
|
|
2923
|
+
name = "same-file"
|
|
2924
|
+
version = "1.0.6"
|
|
2925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2926
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2927
|
+
dependencies = [
|
|
2928
|
+
"winapi-util",
|
|
2929
|
+
]
|
|
2930
|
+
|
|
2931
|
+
[[package]]
|
|
2932
|
+
name = "schemars"
|
|
2933
|
+
version = "0.9.0"
|
|
2934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2935
|
+
checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
|
|
2936
|
+
dependencies = [
|
|
2937
|
+
"dyn-clone",
|
|
2938
|
+
"ref-cast",
|
|
2939
|
+
"serde",
|
|
2940
|
+
"serde_json",
|
|
2941
|
+
]
|
|
2942
|
+
|
|
2943
|
+
[[package]]
|
|
2944
|
+
name = "schemars"
|
|
2945
|
+
version = "1.2.0"
|
|
2946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2947
|
+
checksum = "54e910108742c57a770f492731f99be216a52fadd361b06c8fb59d74ccc267d2"
|
|
2948
|
+
dependencies = [
|
|
2949
|
+
"dyn-clone",
|
|
2950
|
+
"ref-cast",
|
|
2951
|
+
"serde",
|
|
2952
|
+
"serde_json",
|
|
2953
|
+
]
|
|
2954
|
+
|
|
2955
|
+
[[package]]
|
|
2956
|
+
name = "scopeguard"
|
|
2957
|
+
version = "1.2.0"
|
|
2958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2959
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2960
|
+
|
|
2961
|
+
[[package]]
|
|
2962
|
+
name = "seize"
|
|
2963
|
+
version = "0.5.1"
|
|
2964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2965
|
+
checksum = "5b55fb86dfd3a2f5f76ea78310a88f96c4ea21a3031f8d212443d56123fd0521"
|
|
2966
|
+
dependencies = [
|
|
2967
|
+
"libc",
|
|
2968
|
+
"windows-sys 0.61.2",
|
|
2969
|
+
]
|
|
2970
|
+
|
|
2971
|
+
[[package]]
|
|
2972
|
+
name = "serde"
|
|
2973
|
+
version = "1.0.228"
|
|
2974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2975
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2976
|
+
dependencies = [
|
|
2977
|
+
"serde_core",
|
|
2978
|
+
"serde_derive",
|
|
2979
|
+
]
|
|
2980
|
+
|
|
2981
|
+
[[package]]
|
|
2982
|
+
name = "serde_core"
|
|
2983
|
+
version = "1.0.228"
|
|
2984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2985
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2986
|
+
dependencies = [
|
|
2987
|
+
"serde_derive",
|
|
2988
|
+
]
|
|
2989
|
+
|
|
2990
|
+
[[package]]
|
|
2991
|
+
name = "serde_derive"
|
|
2992
|
+
version = "1.0.228"
|
|
2993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2994
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2995
|
+
dependencies = [
|
|
2996
|
+
"proc-macro2",
|
|
2997
|
+
"quote",
|
|
2998
|
+
"syn 2.0.113",
|
|
2999
|
+
]
|
|
3000
|
+
|
|
3001
|
+
[[package]]
|
|
3002
|
+
name = "serde_json"
|
|
3003
|
+
version = "1.0.148"
|
|
3004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3005
|
+
checksum = "3084b546a1dd6289475996f182a22aba973866ea8e8b02c51d9f46b1336a22da"
|
|
3006
|
+
dependencies = [
|
|
3007
|
+
"itoa",
|
|
3008
|
+
"memchr",
|
|
3009
|
+
"serde",
|
|
3010
|
+
"serde_core",
|
|
3011
|
+
"zmij",
|
|
3012
|
+
]
|
|
3013
|
+
|
|
3014
|
+
[[package]]
|
|
3015
|
+
name = "serde_regex"
|
|
3016
|
+
version = "1.1.0"
|
|
3017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3018
|
+
checksum = "a8136f1a4ea815d7eac4101cfd0b16dc0cb5e1fe1b8609dfd728058656b7badf"
|
|
3019
|
+
dependencies = [
|
|
3020
|
+
"regex",
|
|
3021
|
+
"serde",
|
|
3022
|
+
]
|
|
3023
|
+
|
|
3024
|
+
[[package]]
|
|
3025
|
+
name = "serde_urlencoded"
|
|
3026
|
+
version = "0.7.1"
|
|
3027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3028
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
3029
|
+
dependencies = [
|
|
3030
|
+
"form_urlencoded",
|
|
3031
|
+
"itoa",
|
|
3032
|
+
"ryu",
|
|
3033
|
+
"serde",
|
|
3034
|
+
]
|
|
3035
|
+
|
|
3036
|
+
[[package]]
|
|
3037
|
+
name = "serde_with"
|
|
3038
|
+
version = "3.16.1"
|
|
3039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3040
|
+
checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7"
|
|
3041
|
+
dependencies = [
|
|
3042
|
+
"base64",
|
|
3043
|
+
"chrono",
|
|
3044
|
+
"hex",
|
|
3045
|
+
"indexmap 1.9.3",
|
|
3046
|
+
"indexmap 2.12.1",
|
|
3047
|
+
"schemars 0.9.0",
|
|
3048
|
+
"schemars 1.2.0",
|
|
3049
|
+
"serde_core",
|
|
3050
|
+
"serde_json",
|
|
3051
|
+
"serde_with_macros",
|
|
3052
|
+
"time",
|
|
3053
|
+
]
|
|
3054
|
+
|
|
3055
|
+
[[package]]
|
|
3056
|
+
name = "serde_with_macros"
|
|
3057
|
+
version = "3.16.1"
|
|
3058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3059
|
+
checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c"
|
|
3060
|
+
dependencies = [
|
|
3061
|
+
"darling 0.21.3",
|
|
3062
|
+
"proc-macro2",
|
|
3063
|
+
"quote",
|
|
3064
|
+
"syn 2.0.113",
|
|
3065
|
+
]
|
|
3066
|
+
|
|
3067
|
+
[[package]]
|
|
3068
|
+
name = "sha1"
|
|
3069
|
+
version = "0.10.6"
|
|
3070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3071
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
3072
|
+
dependencies = [
|
|
3073
|
+
"cfg-if",
|
|
3074
|
+
"cpufeatures",
|
|
3075
|
+
"digest",
|
|
3076
|
+
]
|
|
3077
|
+
|
|
3078
|
+
[[package]]
|
|
3079
|
+
name = "sha2"
|
|
3080
|
+
version = "0.10.9"
|
|
3081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3082
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
3083
|
+
dependencies = [
|
|
3084
|
+
"cfg-if",
|
|
3085
|
+
"cpufeatures",
|
|
3086
|
+
"digest",
|
|
3087
|
+
]
|
|
3088
|
+
|
|
3089
|
+
[[package]]
|
|
3090
|
+
name = "shacl-ir"
|
|
3091
|
+
version = "0.0.5"
|
|
3092
|
+
dependencies = [
|
|
3093
|
+
"oxigraph",
|
|
3094
|
+
"oxrdf",
|
|
3095
|
+
"serde",
|
|
3096
|
+
]
|
|
3097
|
+
|
|
3098
|
+
[[package]]
|
|
3099
|
+
name = "shifty"
|
|
3100
|
+
version = "0.0.5"
|
|
3101
|
+
dependencies = [
|
|
3102
|
+
"log",
|
|
3103
|
+
"ntest",
|
|
3104
|
+
"ontoenv",
|
|
3105
|
+
"oxigraph",
|
|
3106
|
+
"oxrdf",
|
|
3107
|
+
"oxrdfio",
|
|
3108
|
+
"oxsdatatypes",
|
|
3109
|
+
"papaya",
|
|
3110
|
+
"paste",
|
|
3111
|
+
"petgraph",
|
|
3112
|
+
"rayon",
|
|
3113
|
+
"regex",
|
|
3114
|
+
"serde_json",
|
|
3115
|
+
"sha2",
|
|
3116
|
+
"shacl-ir",
|
|
3117
|
+
"spargebra",
|
|
3118
|
+
"url",
|
|
3119
|
+
"xxhash-rust",
|
|
3120
|
+
]
|
|
3121
|
+
|
|
3122
|
+
[[package]]
|
|
3123
|
+
name = "shlex"
|
|
3124
|
+
version = "1.3.0"
|
|
3125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3126
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
3127
|
+
|
|
3128
|
+
[[package]]
|
|
3129
|
+
name = "siphasher"
|
|
3130
|
+
version = "1.0.1"
|
|
3131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3132
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
3133
|
+
|
|
3134
|
+
[[package]]
|
|
3135
|
+
name = "sized-chunks"
|
|
3136
|
+
version = "0.6.5"
|
|
3137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3138
|
+
checksum = "16d69225bde7a69b235da73377861095455d298f2b970996eec25ddbb42b3d1e"
|
|
3139
|
+
dependencies = [
|
|
3140
|
+
"bitmaps",
|
|
3141
|
+
"typenum",
|
|
3142
|
+
]
|
|
3143
|
+
|
|
3144
|
+
[[package]]
|
|
3145
|
+
name = "slab"
|
|
3146
|
+
version = "0.4.11"
|
|
3147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3148
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
3149
|
+
|
|
3150
|
+
[[package]]
|
|
3151
|
+
name = "smallstr"
|
|
3152
|
+
version = "0.3.1"
|
|
3153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3154
|
+
checksum = "862077b1e764f04c251fe82a2ef562fd78d7cadaeb072ca7c2bcaf7217b1ff3b"
|
|
3155
|
+
dependencies = [
|
|
3156
|
+
"smallvec",
|
|
3157
|
+
]
|
|
3158
|
+
|
|
3159
|
+
[[package]]
|
|
3160
|
+
name = "smallvec"
|
|
3161
|
+
version = "1.15.1"
|
|
3162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3163
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
3164
|
+
|
|
3165
|
+
[[package]]
|
|
3166
|
+
name = "socket2"
|
|
3167
|
+
version = "0.6.1"
|
|
3168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3169
|
+
checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
|
|
3170
|
+
dependencies = [
|
|
3171
|
+
"libc",
|
|
3172
|
+
"windows-sys 0.60.2",
|
|
3173
|
+
]
|
|
3174
|
+
|
|
3175
|
+
[[package]]
|
|
3176
|
+
name = "sparesults"
|
|
3177
|
+
version = "0.3.1"
|
|
3178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3179
|
+
checksum = "63c2001427f2d0575e3f6d68e2ff9597988361bc0e3b1b5cf444991258860e18"
|
|
3180
|
+
dependencies = [
|
|
3181
|
+
"json-event-parser",
|
|
3182
|
+
"memchr",
|
|
3183
|
+
"oxrdf",
|
|
3184
|
+
"quick-xml",
|
|
3185
|
+
"thiserror 2.0.17",
|
|
3186
|
+
]
|
|
3187
|
+
|
|
3188
|
+
[[package]]
|
|
3189
|
+
name = "spareval"
|
|
3190
|
+
version = "0.2.3"
|
|
3191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3192
|
+
checksum = "e1b4df2d6e3259f36f472345c7fbafee300c939e02e2ae9d6c1d871378193a7d"
|
|
3193
|
+
dependencies = [
|
|
3194
|
+
"hex",
|
|
3195
|
+
"json-event-parser",
|
|
3196
|
+
"md-5",
|
|
3197
|
+
"oxiri",
|
|
3198
|
+
"oxrdf",
|
|
3199
|
+
"oxsdatatypes",
|
|
3200
|
+
"rand 0.9.2",
|
|
3201
|
+
"regex",
|
|
3202
|
+
"rustc-hash",
|
|
3203
|
+
"sha1",
|
|
3204
|
+
"sha2",
|
|
3205
|
+
"sparesults",
|
|
3206
|
+
"spargebra",
|
|
3207
|
+
"sparopt",
|
|
3208
|
+
"thiserror 2.0.17",
|
|
3209
|
+
]
|
|
3210
|
+
|
|
3211
|
+
[[package]]
|
|
3212
|
+
name = "spargebra"
|
|
3213
|
+
version = "0.4.3"
|
|
3214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3215
|
+
checksum = "19ef1b6fa0fc31c5bb4c03d4a88034121fb68c4092d7799884b60f67f2a53684"
|
|
3216
|
+
dependencies = [
|
|
3217
|
+
"oxilangtag",
|
|
3218
|
+
"oxiri",
|
|
3219
|
+
"oxrdf",
|
|
3220
|
+
"peg",
|
|
3221
|
+
"rand 0.9.2",
|
|
3222
|
+
"thiserror 2.0.17",
|
|
3223
|
+
]
|
|
3224
|
+
|
|
3225
|
+
[[package]]
|
|
3226
|
+
name = "sparopt"
|
|
3227
|
+
version = "0.3.3"
|
|
3228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3229
|
+
checksum = "564b6144ada529f4339c404a91b460d6fb3e3efc610145c5e48ec88309559e22"
|
|
3230
|
+
dependencies = [
|
|
3231
|
+
"oxrdf",
|
|
3232
|
+
"rand 0.9.2",
|
|
3233
|
+
"spargebra",
|
|
3234
|
+
]
|
|
3235
|
+
|
|
3236
|
+
[[package]]
|
|
3237
|
+
name = "stable_deref_trait"
|
|
3238
|
+
version = "1.2.1"
|
|
3239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3240
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
3241
|
+
|
|
3242
|
+
[[package]]
|
|
3243
|
+
name = "static-iref"
|
|
3244
|
+
version = "3.0.0"
|
|
3245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3246
|
+
checksum = "3cc4068497ae43896d41174586dcdc2153a1af2c82856fb308bfaaddc28e5549"
|
|
3247
|
+
dependencies = [
|
|
3248
|
+
"iref",
|
|
3249
|
+
"quote",
|
|
3250
|
+
"syn 2.0.113",
|
|
3251
|
+
]
|
|
3252
|
+
|
|
3253
|
+
[[package]]
|
|
3254
|
+
name = "static-regular-grammar"
|
|
3255
|
+
version = "2.0.2"
|
|
3256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3257
|
+
checksum = "4f4a6c40247579acfbb138c3cd7de3dab113ab4ac6227f1b7de7d626ee667957"
|
|
3258
|
+
dependencies = [
|
|
3259
|
+
"abnf",
|
|
3260
|
+
"btree-range-map",
|
|
3261
|
+
"ciborium",
|
|
3262
|
+
"hex_fmt",
|
|
3263
|
+
"indoc",
|
|
3264
|
+
"proc-macro-error",
|
|
3265
|
+
"proc-macro2",
|
|
3266
|
+
"quote",
|
|
3267
|
+
"serde",
|
|
3268
|
+
"sha2",
|
|
3269
|
+
"syn 2.0.113",
|
|
3270
|
+
"thiserror 1.0.69",
|
|
3271
|
+
]
|
|
3272
|
+
|
|
3273
|
+
[[package]]
|
|
3274
|
+
name = "strsim"
|
|
3275
|
+
version = "0.11.1"
|
|
3276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3277
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
3278
|
+
|
|
3279
|
+
[[package]]
|
|
3280
|
+
name = "subtle"
|
|
3281
|
+
version = "2.6.1"
|
|
3282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3283
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
3284
|
+
|
|
3285
|
+
[[package]]
|
|
3286
|
+
name = "syn"
|
|
3287
|
+
version = "1.0.109"
|
|
3288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3289
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
3290
|
+
dependencies = [
|
|
3291
|
+
"proc-macro2",
|
|
3292
|
+
"quote",
|
|
3293
|
+
"unicode-ident",
|
|
3294
|
+
]
|
|
3295
|
+
|
|
3296
|
+
[[package]]
|
|
3297
|
+
name = "syn"
|
|
3298
|
+
version = "2.0.113"
|
|
3299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3300
|
+
checksum = "678faa00651c9eb72dd2020cbdf275d92eccb2400d568e419efdd64838145cb4"
|
|
3301
|
+
dependencies = [
|
|
3302
|
+
"proc-macro2",
|
|
3303
|
+
"quote",
|
|
3304
|
+
"unicode-ident",
|
|
3305
|
+
]
|
|
3306
|
+
|
|
3307
|
+
[[package]]
|
|
3308
|
+
name = "sync_wrapper"
|
|
3309
|
+
version = "1.0.2"
|
|
3310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3311
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
3312
|
+
dependencies = [
|
|
3313
|
+
"futures-core",
|
|
3314
|
+
]
|
|
3315
|
+
|
|
3316
|
+
[[package]]
|
|
3317
|
+
name = "synstructure"
|
|
3318
|
+
version = "0.13.2"
|
|
3319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3320
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
3321
|
+
dependencies = [
|
|
3322
|
+
"proc-macro2",
|
|
3323
|
+
"quote",
|
|
3324
|
+
"syn 2.0.113",
|
|
3325
|
+
]
|
|
3326
|
+
|
|
3327
|
+
[[package]]
|
|
3328
|
+
name = "target-lexicon"
|
|
3329
|
+
version = "0.13.4"
|
|
3330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3331
|
+
checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
|
|
3332
|
+
|
|
3333
|
+
[[package]]
|
|
3334
|
+
name = "tempdir"
|
|
3335
|
+
version = "0.3.7"
|
|
3336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3337
|
+
checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8"
|
|
3338
|
+
dependencies = [
|
|
3339
|
+
"rand 0.4.6",
|
|
3340
|
+
"remove_dir_all",
|
|
3341
|
+
]
|
|
3342
|
+
|
|
3343
|
+
[[package]]
|
|
3344
|
+
name = "tempfile"
|
|
3345
|
+
version = "3.24.0"
|
|
3346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3347
|
+
checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
|
|
3348
|
+
dependencies = [
|
|
3349
|
+
"fastrand",
|
|
3350
|
+
"getrandom 0.3.4",
|
|
3351
|
+
"once_cell",
|
|
3352
|
+
"rustix",
|
|
3353
|
+
"windows-sys 0.61.2",
|
|
3354
|
+
]
|
|
3355
|
+
|
|
3356
|
+
[[package]]
|
|
3357
|
+
name = "thiserror"
|
|
3358
|
+
version = "1.0.69"
|
|
3359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3360
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
3361
|
+
dependencies = [
|
|
3362
|
+
"thiserror-impl 1.0.69",
|
|
3363
|
+
]
|
|
3364
|
+
|
|
3365
|
+
[[package]]
|
|
3366
|
+
name = "thiserror"
|
|
3367
|
+
version = "2.0.17"
|
|
3368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3369
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
3370
|
+
dependencies = [
|
|
3371
|
+
"thiserror-impl 2.0.17",
|
|
3372
|
+
]
|
|
3373
|
+
|
|
3374
|
+
[[package]]
|
|
3375
|
+
name = "thiserror-impl"
|
|
3376
|
+
version = "1.0.69"
|
|
3377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3378
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
3379
|
+
dependencies = [
|
|
3380
|
+
"proc-macro2",
|
|
3381
|
+
"quote",
|
|
3382
|
+
"syn 2.0.113",
|
|
3383
|
+
]
|
|
3384
|
+
|
|
3385
|
+
[[package]]
|
|
3386
|
+
name = "thiserror-impl"
|
|
3387
|
+
version = "2.0.17"
|
|
3388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3389
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
3390
|
+
dependencies = [
|
|
3391
|
+
"proc-macro2",
|
|
3392
|
+
"quote",
|
|
3393
|
+
"syn 2.0.113",
|
|
3394
|
+
]
|
|
3395
|
+
|
|
3396
|
+
[[package]]
|
|
3397
|
+
name = "time"
|
|
3398
|
+
version = "0.3.44"
|
|
3399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3400
|
+
checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
|
|
3401
|
+
dependencies = [
|
|
3402
|
+
"deranged",
|
|
3403
|
+
"itoa",
|
|
3404
|
+
"num-conv",
|
|
3405
|
+
"powerfmt",
|
|
3406
|
+
"serde",
|
|
3407
|
+
"time-core",
|
|
3408
|
+
"time-macros",
|
|
3409
|
+
]
|
|
3410
|
+
|
|
3411
|
+
[[package]]
|
|
3412
|
+
name = "time-core"
|
|
3413
|
+
version = "0.1.6"
|
|
3414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3415
|
+
checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
|
|
3416
|
+
|
|
3417
|
+
[[package]]
|
|
3418
|
+
name = "time-macros"
|
|
3419
|
+
version = "0.2.24"
|
|
3420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3421
|
+
checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
|
|
3422
|
+
dependencies = [
|
|
3423
|
+
"num-conv",
|
|
3424
|
+
"time-core",
|
|
3425
|
+
]
|
|
3426
|
+
|
|
3427
|
+
[[package]]
|
|
3428
|
+
name = "tinystr"
|
|
3429
|
+
version = "0.8.2"
|
|
3430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3431
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
3432
|
+
dependencies = [
|
|
3433
|
+
"displaydoc",
|
|
3434
|
+
"zerovec",
|
|
3435
|
+
]
|
|
3436
|
+
|
|
3437
|
+
[[package]]
|
|
3438
|
+
name = "tinyvec"
|
|
3439
|
+
version = "1.10.0"
|
|
3440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3441
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
3442
|
+
dependencies = [
|
|
3443
|
+
"tinyvec_macros",
|
|
3444
|
+
]
|
|
3445
|
+
|
|
3446
|
+
[[package]]
|
|
3447
|
+
name = "tinyvec_macros"
|
|
3448
|
+
version = "0.1.1"
|
|
3449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3450
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
3451
|
+
|
|
3452
|
+
[[package]]
|
|
3453
|
+
name = "tokio"
|
|
3454
|
+
version = "1.49.0"
|
|
3455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3456
|
+
checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
|
|
3457
|
+
dependencies = [
|
|
3458
|
+
"bytes",
|
|
3459
|
+
"libc",
|
|
3460
|
+
"mio",
|
|
3461
|
+
"pin-project-lite",
|
|
3462
|
+
"socket2",
|
|
3463
|
+
"windows-sys 0.61.2",
|
|
3464
|
+
]
|
|
3465
|
+
|
|
3466
|
+
[[package]]
|
|
3467
|
+
name = "tokio-rustls"
|
|
3468
|
+
version = "0.26.4"
|
|
3469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3470
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
3471
|
+
dependencies = [
|
|
3472
|
+
"rustls",
|
|
3473
|
+
"tokio",
|
|
3474
|
+
]
|
|
3475
|
+
|
|
3476
|
+
[[package]]
|
|
3477
|
+
name = "toml_datetime"
|
|
3478
|
+
version = "0.7.5+spec-1.1.0"
|
|
3479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3480
|
+
checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
|
|
3481
|
+
dependencies = [
|
|
3482
|
+
"serde_core",
|
|
3483
|
+
]
|
|
3484
|
+
|
|
3485
|
+
[[package]]
|
|
3486
|
+
name = "toml_edit"
|
|
3487
|
+
version = "0.23.10+spec-1.0.0"
|
|
3488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3489
|
+
checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
|
|
3490
|
+
dependencies = [
|
|
3491
|
+
"indexmap 2.12.1",
|
|
3492
|
+
"toml_datetime",
|
|
3493
|
+
"toml_parser",
|
|
3494
|
+
"winnow",
|
|
3495
|
+
]
|
|
3496
|
+
|
|
3497
|
+
[[package]]
|
|
3498
|
+
name = "toml_parser"
|
|
3499
|
+
version = "1.0.6+spec-1.1.0"
|
|
3500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3501
|
+
checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
|
|
3502
|
+
dependencies = [
|
|
3503
|
+
"winnow",
|
|
3504
|
+
]
|
|
3505
|
+
|
|
3506
|
+
[[package]]
|
|
3507
|
+
name = "tower"
|
|
3508
|
+
version = "0.5.2"
|
|
3509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3510
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
|
3511
|
+
dependencies = [
|
|
3512
|
+
"futures-core",
|
|
3513
|
+
"futures-util",
|
|
3514
|
+
"pin-project-lite",
|
|
3515
|
+
"sync_wrapper",
|
|
3516
|
+
"tokio",
|
|
3517
|
+
"tower-layer",
|
|
3518
|
+
"tower-service",
|
|
3519
|
+
]
|
|
3520
|
+
|
|
3521
|
+
[[package]]
|
|
3522
|
+
name = "tower-http"
|
|
3523
|
+
version = "0.6.8"
|
|
3524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3525
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
3526
|
+
dependencies = [
|
|
3527
|
+
"bitflags",
|
|
3528
|
+
"bytes",
|
|
3529
|
+
"futures-util",
|
|
3530
|
+
"http",
|
|
3531
|
+
"http-body",
|
|
3532
|
+
"iri-string",
|
|
3533
|
+
"pin-project-lite",
|
|
3534
|
+
"tower",
|
|
3535
|
+
"tower-layer",
|
|
3536
|
+
"tower-service",
|
|
3537
|
+
]
|
|
3538
|
+
|
|
3539
|
+
[[package]]
|
|
3540
|
+
name = "tower-layer"
|
|
3541
|
+
version = "0.3.3"
|
|
3542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3543
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
3544
|
+
|
|
3545
|
+
[[package]]
|
|
3546
|
+
name = "tower-service"
|
|
3547
|
+
version = "0.3.3"
|
|
3548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3549
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
3550
|
+
|
|
3551
|
+
[[package]]
|
|
3552
|
+
name = "tracing"
|
|
3553
|
+
version = "0.1.44"
|
|
3554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3555
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
3556
|
+
dependencies = [
|
|
3557
|
+
"pin-project-lite",
|
|
3558
|
+
"tracing-core",
|
|
3559
|
+
]
|
|
3560
|
+
|
|
3561
|
+
[[package]]
|
|
3562
|
+
name = "tracing-core"
|
|
3563
|
+
version = "0.1.36"
|
|
3564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3565
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
3566
|
+
dependencies = [
|
|
3567
|
+
"once_cell",
|
|
3568
|
+
]
|
|
3569
|
+
|
|
3570
|
+
[[package]]
|
|
3571
|
+
name = "try-lock"
|
|
3572
|
+
version = "0.2.5"
|
|
3573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3574
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
3575
|
+
|
|
3576
|
+
[[package]]
|
|
3577
|
+
name = "ts-generator"
|
|
3578
|
+
version = "0.0.5"
|
|
3579
|
+
dependencies = [
|
|
3580
|
+
"clap",
|
|
3581
|
+
"oxigraph",
|
|
3582
|
+
"serde",
|
|
3583
|
+
"serde_json",
|
|
3584
|
+
"shacl-ir",
|
|
3585
|
+
"shifty",
|
|
3586
|
+
"tempfile",
|
|
3587
|
+
]
|
|
3588
|
+
|
|
3589
|
+
[[package]]
|
|
3590
|
+
name = "typenum"
|
|
3591
|
+
version = "1.19.0"
|
|
3592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3593
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
3594
|
+
|
|
3595
|
+
[[package]]
|
|
3596
|
+
name = "ucd-trie"
|
|
3597
|
+
version = "0.1.7"
|
|
3598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3599
|
+
checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
|
|
3600
|
+
|
|
3601
|
+
[[package]]
|
|
3602
|
+
name = "unicode-ident"
|
|
3603
|
+
version = "1.0.22"
|
|
3604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3605
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
3606
|
+
|
|
3607
|
+
[[package]]
|
|
3608
|
+
name = "unicode-width"
|
|
3609
|
+
version = "0.2.2"
|
|
3610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3611
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
3612
|
+
|
|
3613
|
+
[[package]]
|
|
3614
|
+
name = "unindent"
|
|
3615
|
+
version = "0.2.4"
|
|
3616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3617
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
3618
|
+
|
|
3619
|
+
[[package]]
|
|
3620
|
+
name = "untrusted"
|
|
3621
|
+
version = "0.9.0"
|
|
3622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3623
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
3624
|
+
|
|
3625
|
+
[[package]]
|
|
3626
|
+
name = "url"
|
|
3627
|
+
version = "2.5.7"
|
|
3628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3629
|
+
checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
|
|
3630
|
+
dependencies = [
|
|
3631
|
+
"form_urlencoded",
|
|
3632
|
+
"idna",
|
|
3633
|
+
"percent-encoding",
|
|
3634
|
+
"serde",
|
|
3635
|
+
]
|
|
3636
|
+
|
|
3637
|
+
[[package]]
|
|
3638
|
+
name = "utf8-decode"
|
|
3639
|
+
version = "1.0.1"
|
|
3640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3641
|
+
checksum = "ca61eb27fa339aa08826a29f03e87b99b4d8f0fc2255306fd266bb1b6a9de498"
|
|
3642
|
+
|
|
3643
|
+
[[package]]
|
|
3644
|
+
name = "utf8_iter"
|
|
3645
|
+
version = "1.0.4"
|
|
3646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3647
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3648
|
+
|
|
3649
|
+
[[package]]
|
|
3650
|
+
name = "utf8parse"
|
|
3651
|
+
version = "0.2.2"
|
|
3652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3653
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
3654
|
+
|
|
3655
|
+
[[package]]
|
|
3656
|
+
name = "version_check"
|
|
3657
|
+
version = "0.9.5"
|
|
3658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3659
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3660
|
+
|
|
3661
|
+
[[package]]
|
|
3662
|
+
name = "walkdir"
|
|
3663
|
+
version = "2.5.0"
|
|
3664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3665
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3666
|
+
dependencies = [
|
|
3667
|
+
"same-file",
|
|
3668
|
+
"winapi-util",
|
|
3669
|
+
]
|
|
3670
|
+
|
|
3671
|
+
[[package]]
|
|
3672
|
+
name = "want"
|
|
3673
|
+
version = "0.3.1"
|
|
3674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3675
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
3676
|
+
dependencies = [
|
|
3677
|
+
"try-lock",
|
|
3678
|
+
]
|
|
3679
|
+
|
|
3680
|
+
[[package]]
|
|
3681
|
+
name = "wasi"
|
|
3682
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3684
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3685
|
+
|
|
3686
|
+
[[package]]
|
|
3687
|
+
name = "wasip2"
|
|
3688
|
+
version = "1.0.1+wasi-0.2.4"
|
|
3689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3690
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
3691
|
+
dependencies = [
|
|
3692
|
+
"wit-bindgen",
|
|
3693
|
+
]
|
|
3694
|
+
|
|
3695
|
+
[[package]]
|
|
3696
|
+
name = "wasm-bindgen"
|
|
3697
|
+
version = "0.2.106"
|
|
3698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3699
|
+
checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
|
|
3700
|
+
dependencies = [
|
|
3701
|
+
"cfg-if",
|
|
3702
|
+
"once_cell",
|
|
3703
|
+
"rustversion",
|
|
3704
|
+
"wasm-bindgen-macro",
|
|
3705
|
+
"wasm-bindgen-shared",
|
|
3706
|
+
]
|
|
3707
|
+
|
|
3708
|
+
[[package]]
|
|
3709
|
+
name = "wasm-bindgen-futures"
|
|
3710
|
+
version = "0.4.56"
|
|
3711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3712
|
+
checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
|
|
3713
|
+
dependencies = [
|
|
3714
|
+
"cfg-if",
|
|
3715
|
+
"js-sys",
|
|
3716
|
+
"once_cell",
|
|
3717
|
+
"wasm-bindgen",
|
|
3718
|
+
"web-sys",
|
|
3719
|
+
]
|
|
3720
|
+
|
|
3721
|
+
[[package]]
|
|
3722
|
+
name = "wasm-bindgen-macro"
|
|
3723
|
+
version = "0.2.106"
|
|
3724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3725
|
+
checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
|
|
3726
|
+
dependencies = [
|
|
3727
|
+
"quote",
|
|
3728
|
+
"wasm-bindgen-macro-support",
|
|
3729
|
+
]
|
|
3730
|
+
|
|
3731
|
+
[[package]]
|
|
3732
|
+
name = "wasm-bindgen-macro-support"
|
|
3733
|
+
version = "0.2.106"
|
|
3734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3735
|
+
checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
|
|
3736
|
+
dependencies = [
|
|
3737
|
+
"bumpalo",
|
|
3738
|
+
"proc-macro2",
|
|
3739
|
+
"quote",
|
|
3740
|
+
"syn 2.0.113",
|
|
3741
|
+
"wasm-bindgen-shared",
|
|
3742
|
+
]
|
|
3743
|
+
|
|
3744
|
+
[[package]]
|
|
3745
|
+
name = "wasm-bindgen-shared"
|
|
3746
|
+
version = "0.2.106"
|
|
3747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3748
|
+
checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
|
|
3749
|
+
dependencies = [
|
|
3750
|
+
"unicode-ident",
|
|
3751
|
+
]
|
|
3752
|
+
|
|
3753
|
+
[[package]]
|
|
3754
|
+
name = "web-sys"
|
|
3755
|
+
version = "0.3.83"
|
|
3756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3757
|
+
checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
|
|
3758
|
+
dependencies = [
|
|
3759
|
+
"js-sys",
|
|
3760
|
+
"wasm-bindgen",
|
|
3761
|
+
]
|
|
3762
|
+
|
|
3763
|
+
[[package]]
|
|
3764
|
+
name = "web-time"
|
|
3765
|
+
version = "1.1.0"
|
|
3766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3767
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
3768
|
+
dependencies = [
|
|
3769
|
+
"js-sys",
|
|
3770
|
+
"wasm-bindgen",
|
|
3771
|
+
]
|
|
3772
|
+
|
|
3773
|
+
[[package]]
|
|
3774
|
+
name = "webpki-roots"
|
|
3775
|
+
version = "1.0.5"
|
|
3776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3777
|
+
checksum = "12bed680863276c63889429bfd6cab3b99943659923822de1c8a39c49e4d722c"
|
|
3778
|
+
dependencies = [
|
|
3779
|
+
"rustls-pki-types",
|
|
3780
|
+
]
|
|
3781
|
+
|
|
3782
|
+
[[package]]
|
|
3783
|
+
name = "winapi"
|
|
3784
|
+
version = "0.3.9"
|
|
3785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3786
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
3787
|
+
dependencies = [
|
|
3788
|
+
"winapi-i686-pc-windows-gnu",
|
|
3789
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
3790
|
+
]
|
|
3791
|
+
|
|
3792
|
+
[[package]]
|
|
3793
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
3794
|
+
version = "0.4.0"
|
|
3795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3796
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
3797
|
+
|
|
3798
|
+
[[package]]
|
|
3799
|
+
name = "winapi-util"
|
|
3800
|
+
version = "0.1.11"
|
|
3801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3802
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
3803
|
+
dependencies = [
|
|
3804
|
+
"windows-sys 0.61.2",
|
|
3805
|
+
]
|
|
3806
|
+
|
|
3807
|
+
[[package]]
|
|
3808
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
3809
|
+
version = "0.4.0"
|
|
3810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3811
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3812
|
+
|
|
3813
|
+
[[package]]
|
|
3814
|
+
name = "windows-core"
|
|
3815
|
+
version = "0.62.2"
|
|
3816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3817
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
3818
|
+
dependencies = [
|
|
3819
|
+
"windows-implement",
|
|
3820
|
+
"windows-interface",
|
|
3821
|
+
"windows-link",
|
|
3822
|
+
"windows-result",
|
|
3823
|
+
"windows-strings",
|
|
3824
|
+
]
|
|
3825
|
+
|
|
3826
|
+
[[package]]
|
|
3827
|
+
name = "windows-implement"
|
|
3828
|
+
version = "0.60.2"
|
|
3829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3830
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
3831
|
+
dependencies = [
|
|
3832
|
+
"proc-macro2",
|
|
3833
|
+
"quote",
|
|
3834
|
+
"syn 2.0.113",
|
|
3835
|
+
]
|
|
3836
|
+
|
|
3837
|
+
[[package]]
|
|
3838
|
+
name = "windows-interface"
|
|
3839
|
+
version = "0.59.3"
|
|
3840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3841
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
3842
|
+
dependencies = [
|
|
3843
|
+
"proc-macro2",
|
|
3844
|
+
"quote",
|
|
3845
|
+
"syn 2.0.113",
|
|
3846
|
+
]
|
|
3847
|
+
|
|
3848
|
+
[[package]]
|
|
3849
|
+
name = "windows-link"
|
|
3850
|
+
version = "0.2.1"
|
|
3851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3852
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3853
|
+
|
|
3854
|
+
[[package]]
|
|
3855
|
+
name = "windows-result"
|
|
3856
|
+
version = "0.4.1"
|
|
3857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3858
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
3859
|
+
dependencies = [
|
|
3860
|
+
"windows-link",
|
|
3861
|
+
]
|
|
3862
|
+
|
|
3863
|
+
[[package]]
|
|
3864
|
+
name = "windows-strings"
|
|
3865
|
+
version = "0.5.1"
|
|
3866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3867
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
3868
|
+
dependencies = [
|
|
3869
|
+
"windows-link",
|
|
3870
|
+
]
|
|
3871
|
+
|
|
3872
|
+
[[package]]
|
|
3873
|
+
name = "windows-sys"
|
|
3874
|
+
version = "0.52.0"
|
|
3875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3876
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3877
|
+
dependencies = [
|
|
3878
|
+
"windows-targets 0.52.6",
|
|
3879
|
+
]
|
|
3880
|
+
|
|
3881
|
+
[[package]]
|
|
3882
|
+
name = "windows-sys"
|
|
3883
|
+
version = "0.60.2"
|
|
3884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3885
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
3886
|
+
dependencies = [
|
|
3887
|
+
"windows-targets 0.53.5",
|
|
3888
|
+
]
|
|
3889
|
+
|
|
3890
|
+
[[package]]
|
|
3891
|
+
name = "windows-sys"
|
|
3892
|
+
version = "0.61.2"
|
|
3893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3894
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
3895
|
+
dependencies = [
|
|
3896
|
+
"windows-link",
|
|
3897
|
+
]
|
|
3898
|
+
|
|
3899
|
+
[[package]]
|
|
3900
|
+
name = "windows-targets"
|
|
3901
|
+
version = "0.52.6"
|
|
3902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3903
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3904
|
+
dependencies = [
|
|
3905
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
3906
|
+
"windows_aarch64_msvc 0.52.6",
|
|
3907
|
+
"windows_i686_gnu 0.52.6",
|
|
3908
|
+
"windows_i686_gnullvm 0.52.6",
|
|
3909
|
+
"windows_i686_msvc 0.52.6",
|
|
3910
|
+
"windows_x86_64_gnu 0.52.6",
|
|
3911
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
3912
|
+
"windows_x86_64_msvc 0.52.6",
|
|
3913
|
+
]
|
|
3914
|
+
|
|
3915
|
+
[[package]]
|
|
3916
|
+
name = "windows-targets"
|
|
3917
|
+
version = "0.53.5"
|
|
3918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3919
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
3920
|
+
dependencies = [
|
|
3921
|
+
"windows-link",
|
|
3922
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
3923
|
+
"windows_aarch64_msvc 0.53.1",
|
|
3924
|
+
"windows_i686_gnu 0.53.1",
|
|
3925
|
+
"windows_i686_gnullvm 0.53.1",
|
|
3926
|
+
"windows_i686_msvc 0.53.1",
|
|
3927
|
+
"windows_x86_64_gnu 0.53.1",
|
|
3928
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
3929
|
+
"windows_x86_64_msvc 0.53.1",
|
|
3930
|
+
]
|
|
3931
|
+
|
|
3932
|
+
[[package]]
|
|
3933
|
+
name = "windows_aarch64_gnullvm"
|
|
3934
|
+
version = "0.52.6"
|
|
3935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3936
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3937
|
+
|
|
3938
|
+
[[package]]
|
|
3939
|
+
name = "windows_aarch64_gnullvm"
|
|
3940
|
+
version = "0.53.1"
|
|
3941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3942
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
3943
|
+
|
|
3944
|
+
[[package]]
|
|
3945
|
+
name = "windows_aarch64_msvc"
|
|
3946
|
+
version = "0.52.6"
|
|
3947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3948
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3949
|
+
|
|
3950
|
+
[[package]]
|
|
3951
|
+
name = "windows_aarch64_msvc"
|
|
3952
|
+
version = "0.53.1"
|
|
3953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3954
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
3955
|
+
|
|
3956
|
+
[[package]]
|
|
3957
|
+
name = "windows_i686_gnu"
|
|
3958
|
+
version = "0.52.6"
|
|
3959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3960
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3961
|
+
|
|
3962
|
+
[[package]]
|
|
3963
|
+
name = "windows_i686_gnu"
|
|
3964
|
+
version = "0.53.1"
|
|
3965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3966
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
3967
|
+
|
|
3968
|
+
[[package]]
|
|
3969
|
+
name = "windows_i686_gnullvm"
|
|
3970
|
+
version = "0.52.6"
|
|
3971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3972
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3973
|
+
|
|
3974
|
+
[[package]]
|
|
3975
|
+
name = "windows_i686_gnullvm"
|
|
3976
|
+
version = "0.53.1"
|
|
3977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3978
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
3979
|
+
|
|
3980
|
+
[[package]]
|
|
3981
|
+
name = "windows_i686_msvc"
|
|
3982
|
+
version = "0.52.6"
|
|
3983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3984
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3985
|
+
|
|
3986
|
+
[[package]]
|
|
3987
|
+
name = "windows_i686_msvc"
|
|
3988
|
+
version = "0.53.1"
|
|
3989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3990
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
3991
|
+
|
|
3992
|
+
[[package]]
|
|
3993
|
+
name = "windows_x86_64_gnu"
|
|
3994
|
+
version = "0.52.6"
|
|
3995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3996
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3997
|
+
|
|
3998
|
+
[[package]]
|
|
3999
|
+
name = "windows_x86_64_gnu"
|
|
4000
|
+
version = "0.53.1"
|
|
4001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4002
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
4003
|
+
|
|
4004
|
+
[[package]]
|
|
4005
|
+
name = "windows_x86_64_gnullvm"
|
|
4006
|
+
version = "0.52.6"
|
|
4007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4008
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
4009
|
+
|
|
4010
|
+
[[package]]
|
|
4011
|
+
name = "windows_x86_64_gnullvm"
|
|
4012
|
+
version = "0.53.1"
|
|
4013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4014
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
4015
|
+
|
|
4016
|
+
[[package]]
|
|
4017
|
+
name = "windows_x86_64_msvc"
|
|
4018
|
+
version = "0.52.6"
|
|
4019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4020
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
4021
|
+
|
|
4022
|
+
[[package]]
|
|
4023
|
+
name = "windows_x86_64_msvc"
|
|
4024
|
+
version = "0.53.1"
|
|
4025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4026
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
4027
|
+
|
|
4028
|
+
[[package]]
|
|
4029
|
+
name = "winnow"
|
|
4030
|
+
version = "0.7.14"
|
|
4031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4032
|
+
checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
|
|
4033
|
+
dependencies = [
|
|
4034
|
+
"memchr",
|
|
4035
|
+
]
|
|
4036
|
+
|
|
4037
|
+
[[package]]
|
|
4038
|
+
name = "wit-bindgen"
|
|
4039
|
+
version = "0.46.0"
|
|
4040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4041
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
4042
|
+
|
|
4043
|
+
[[package]]
|
|
4044
|
+
name = "writeable"
|
|
4045
|
+
version = "0.6.2"
|
|
4046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4047
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
4048
|
+
|
|
4049
|
+
[[package]]
|
|
4050
|
+
name = "xsd-types"
|
|
4051
|
+
version = "0.9.6"
|
|
4052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4053
|
+
checksum = "c5bf1ac247150da9bff673820d7dcc22bca6ab621b4ee4f76650b581aff47580"
|
|
4054
|
+
dependencies = [
|
|
4055
|
+
"chrono",
|
|
4056
|
+
"iref",
|
|
4057
|
+
"lazy_static",
|
|
4058
|
+
"num-bigint",
|
|
4059
|
+
"num-rational",
|
|
4060
|
+
"num-traits",
|
|
4061
|
+
"once_cell",
|
|
4062
|
+
"ordered-float",
|
|
4063
|
+
"pretty_dtoa",
|
|
4064
|
+
"static-iref",
|
|
4065
|
+
"static-regular-grammar",
|
|
4066
|
+
"thiserror 1.0.69",
|
|
4067
|
+
]
|
|
4068
|
+
|
|
4069
|
+
[[package]]
|
|
4070
|
+
name = "xxhash-rust"
|
|
4071
|
+
version = "0.8.15"
|
|
4072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4073
|
+
checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
|
|
4074
|
+
|
|
4075
|
+
[[package]]
|
|
4076
|
+
name = "yoke"
|
|
4077
|
+
version = "0.8.1"
|
|
4078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4079
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
4080
|
+
dependencies = [
|
|
4081
|
+
"stable_deref_trait",
|
|
4082
|
+
"yoke-derive",
|
|
4083
|
+
"zerofrom",
|
|
4084
|
+
]
|
|
4085
|
+
|
|
4086
|
+
[[package]]
|
|
4087
|
+
name = "yoke-derive"
|
|
4088
|
+
version = "0.8.1"
|
|
4089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4090
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
4091
|
+
dependencies = [
|
|
4092
|
+
"proc-macro2",
|
|
4093
|
+
"quote",
|
|
4094
|
+
"syn 2.0.113",
|
|
4095
|
+
"synstructure",
|
|
4096
|
+
]
|
|
4097
|
+
|
|
4098
|
+
[[package]]
|
|
4099
|
+
name = "zerocopy"
|
|
4100
|
+
version = "0.8.31"
|
|
4101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4102
|
+
checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
|
|
4103
|
+
dependencies = [
|
|
4104
|
+
"zerocopy-derive",
|
|
4105
|
+
]
|
|
4106
|
+
|
|
4107
|
+
[[package]]
|
|
4108
|
+
name = "zerocopy-derive"
|
|
4109
|
+
version = "0.8.31"
|
|
4110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4111
|
+
checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
|
|
4112
|
+
dependencies = [
|
|
4113
|
+
"proc-macro2",
|
|
4114
|
+
"quote",
|
|
4115
|
+
"syn 2.0.113",
|
|
4116
|
+
]
|
|
4117
|
+
|
|
4118
|
+
[[package]]
|
|
4119
|
+
name = "zerofrom"
|
|
4120
|
+
version = "0.1.6"
|
|
4121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4122
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
4123
|
+
dependencies = [
|
|
4124
|
+
"zerofrom-derive",
|
|
4125
|
+
]
|
|
4126
|
+
|
|
4127
|
+
[[package]]
|
|
4128
|
+
name = "zerofrom-derive"
|
|
4129
|
+
version = "0.1.6"
|
|
4130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4131
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
4132
|
+
dependencies = [
|
|
4133
|
+
"proc-macro2",
|
|
4134
|
+
"quote",
|
|
4135
|
+
"syn 2.0.113",
|
|
4136
|
+
"synstructure",
|
|
4137
|
+
]
|
|
4138
|
+
|
|
4139
|
+
[[package]]
|
|
4140
|
+
name = "zeroize"
|
|
4141
|
+
version = "1.8.2"
|
|
4142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4143
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
4144
|
+
|
|
4145
|
+
[[package]]
|
|
4146
|
+
name = "zerotrie"
|
|
4147
|
+
version = "0.2.3"
|
|
4148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4149
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
4150
|
+
dependencies = [
|
|
4151
|
+
"displaydoc",
|
|
4152
|
+
"yoke",
|
|
4153
|
+
"zerofrom",
|
|
4154
|
+
]
|
|
4155
|
+
|
|
4156
|
+
[[package]]
|
|
4157
|
+
name = "zerovec"
|
|
4158
|
+
version = "0.11.5"
|
|
4159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4160
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
4161
|
+
dependencies = [
|
|
4162
|
+
"yoke",
|
|
4163
|
+
"zerofrom",
|
|
4164
|
+
"zerovec-derive",
|
|
4165
|
+
]
|
|
4166
|
+
|
|
4167
|
+
[[package]]
|
|
4168
|
+
name = "zerovec-derive"
|
|
4169
|
+
version = "0.11.2"
|
|
4170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4171
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
4172
|
+
dependencies = [
|
|
4173
|
+
"proc-macro2",
|
|
4174
|
+
"quote",
|
|
4175
|
+
"syn 2.0.113",
|
|
4176
|
+
]
|
|
4177
|
+
|
|
4178
|
+
[[package]]
|
|
4179
|
+
name = "zmij"
|
|
4180
|
+
version = "1.0.10"
|
|
4181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4182
|
+
checksum = "30e0d8dffbae3d840f64bda38e28391faef673a7b5a6017840f2a106c8145868"
|
|
4183
|
+
|
|
4184
|
+
[[package]]
|
|
4185
|
+
name = "zstd"
|
|
4186
|
+
version = "0.13.3"
|
|
4187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4188
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
4189
|
+
dependencies = [
|
|
4190
|
+
"zstd-safe",
|
|
4191
|
+
]
|
|
4192
|
+
|
|
4193
|
+
[[package]]
|
|
4194
|
+
name = "zstd-safe"
|
|
4195
|
+
version = "7.2.4"
|
|
4196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4197
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
4198
|
+
dependencies = [
|
|
4199
|
+
"zstd-sys",
|
|
4200
|
+
]
|
|
4201
|
+
|
|
4202
|
+
[[package]]
|
|
4203
|
+
name = "zstd-sys"
|
|
4204
|
+
version = "2.0.16+zstd.1.5.7"
|
|
4205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4206
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
4207
|
+
dependencies = [
|
|
4208
|
+
"cc",
|
|
4209
|
+
"pkg-config",
|
|
4210
|
+
]
|