Crates.io | rdfox |
lib.rs | rdfox |
version | 0.0.1 |
source | src |
created_at | 2023-05-03 14:05:04.730945 |
updated_at | 2023-05-04 10:33:22.588086 |
description | RDFox for Rust, a high-performance in-memory semantic graph database |
homepage | |
repository | https://github.com/EKGF/rdfox-rs |
max_upload_size | |
id | 855493 |
size | 263,766 |
Embedded Oxford Semantic Technologies RDFox database for Rust programs.
CRDFox.h
using bindgen (which requires llvm to be installed)libRDFox.dylib
(if you use feature rdfox-dylib
)~/.RDFox/RDFox.lic
The major/minor version numbers of this crate are used to determine which version of RDFox needs to be downloaded and used.
RUST_LOG=info cargo test
Or, if you want to see all output:
RUST_LOG=trace cargo test --package rdfox --test load load_rdfox -- --exact --nocapture
If you want to run the tests with the dynamic link library of RDFox, then run this:
RUST_LOG=trace cargo test --package rdfox --features rdfox-dylib --test load load_rdfox -- --exact --nocapture