Fork of https://github.com/oxigraph/oxigraph.git for the purpose of NextGraph project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
oxigraph/lib/src/lib.rs

57 lines
1.3 KiB

#![cfg_attr(
feature = "cargo-clippy",
warn(
cast_possible_truncation,
cast_possible_wrap,
cast_precision_loss,
cast_sign_loss,
default_trait_access,
empty_enum,
enum_glob_use,
expl_impl_clone_on_copy,
explicit_into_iter_loop,
filter_map,
if_not_else,
inline_always,
invalid_upcast_comparisons,
items_after_statements,
linkedlist,
//TODO match_same_arms,
maybe_infinite_iter,
mut_mut,
needless_continue,
option_map_unwrap_or,
//TODO option_map_unwrap_or_else,
pub_enum_variant_names,
replace_consts,
result_map_unwrap_or_else,
//TODO single_match_else,
string_add_assign,
unicode_not_nfc
)
)]
extern crate byteorder;
6 years ago
#[macro_use]
extern crate lazy_static;
extern crate chrono;
extern crate language_tags;
extern crate num_traits;
extern crate ordered_float;
extern crate quick_xml;
extern crate rocksdb;
extern crate rust_decimal;
extern crate url;
extern crate uuid;
#[macro_use]
extern crate failure;
6 years ago
pub mod model;
pub mod rio;
pub mod sparql;
pub mod store;
mod utils;
pub use failure::Error;
pub type Result<T> = ::std::result::Result<T, failure::Error>;