xml2rdf 0.1.0

Library for converting an XML file to N-Triple RDF
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Copyright (c) 2024-2025, Decisym, LLC
# Licensed under the BSD 3-Clause License (see LICENSE file in the project root).

lint:
	cargo install  cargo-machete
	cargo fmt --check
	cargo machete
	cargo clippy --benches --tests --bins --no-deps --all-features

build:
	cargo build

test:
	cargo test

presubmit: lint test