pchampin / sophia_rs

Sophia: a Rust toolkit for RDF and Linked Data
Other
228 stars 24 forks source link

inmem datastet implementation #137

Closed damooo closed 1 year ago

damooo commented 1 year ago

In 0.8 inmem implementation of datasets like FastDataset etc. are missing, while present in 0.7. Current inmem crate only contains implementations for inmem graphs.

pchampin commented 1 year ago

yes, 0.8 is still incomplete (hence the 'alpha' tag in the version). But inmem Dataset types will be back when 0.8 is released (soonish, hopefully).

Note that, in the meantime, you can still "default" implementations of Dataset (for example, any Vec or HashSet of Quads implements Dataset: https://docs.rs/sophia/latest/sophia/dataset/trait.Dataset.html#implementors)