Rust implementation of NextGraph, a Decentralized and local-first web 3.0 ecosystem
https://nextgraph.org
byzantine-fault-tolerancecrdtsdappsdecentralizede2eeeventual-consistencyjson-ldlocal-firstmarkdownocapoffline-firstp2pp2p-networkprivacy-protectionrdfrich-text-editorself-hostedsemantic-websparqlweb3collaboration
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.
249 lines
6.9 KiB
249 lines
6.9 KiB
[package]
|
|
name = "ng-oxigraph"
|
|
version = "0.4.0-alpha.7-ngpreview6"
|
|
authors = ["Tpt <thomas@pellissier-tanon.fr>", "Niko PLP <niko@nextgraph.org>"]
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
keywords = ["RDF", "SPARQL", "graph-database", "database"]
|
|
categories = ["database-implementations"]
|
|
repository = "https://git.nextgraph.org/NextGraph/nextgraph-rs"
|
|
homepage = "https://nextgraph.org"
|
|
documentation = "https://docs.nextgraph.org/"
|
|
description = """
|
|
a SPARQL database and RDF toolkit. fork for NextGraph
|
|
"""
|
|
edition = "2021"
|
|
rust-version = "1.70"
|
|
build = "build.rs"
|
|
|
|
[features]
|
|
default = ["rdf-star","sep-0002","sep-0006", "oxsdatatypes"]
|
|
js = ["getrandom/js", "js-sys"]
|
|
rdf-star = []
|
|
custom-now = []
|
|
xml = []
|
|
ttl = []
|
|
sep-0002 = []
|
|
sep-0006 = []
|
|
oxsdatatypes = []
|
|
|
|
[dependencies]
|
|
lazy_static = "1.4.0"
|
|
digest = "0.10"
|
|
hex = "0.4"
|
|
json-event-parser = "0.2.0-alpha.2"
|
|
md-5 = "0.10"
|
|
oxilangtag = "0.1"
|
|
oxiri = "0.2.3"
|
|
rand = "0.8"
|
|
regex = "1.8.4"
|
|
serde = { version = "1.0.142", features = ["derive"] }
|
|
sha1 = "0.10"
|
|
sha2 = "0.10"
|
|
siphasher = ">=0.3, <2.0"
|
|
thiserror = "1.0.50"
|
|
quick-xml = ">=0.29, <0.32"
|
|
memchr = "2.5"
|
|
peg = "0.8"
|
|
base64-url = "2.0.0"
|
|
ng-repo = { path = "../ng-repo", version = "0.1.0-preview.1" }
|
|
|
|
[target.'cfg(all(not(target_family = "wasm"),not(docsrs)))'.dependencies]
|
|
libc = "0.2"
|
|
ng-rocksdb = { version = "0.21.0-ngpreview.4", git = "https://git.nextgraph.org/NextGraph/rust-rocksdb.git", branch = "master", features = [ ] }
|
|
|
|
[target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies]
|
|
getrandom = "0.2.8"
|
|
js-sys = { version = "0.3.60", optional = true }
|
|
|
|
[target.'cfg(not(target_family = "wasm"))'.dev-dependencies]
|
|
codspeed-criterion-compat = "2.3.3"
|
|
zstd = ">=0.12, <0.14"
|
|
|
|
|
|
[lints.rust]
|
|
absolute_paths_not_starting_with_crate = "warn"
|
|
elided_lifetimes_in_paths = "warn"
|
|
explicit_outlives_requirements = "warn"
|
|
let_underscore_drop = "warn"
|
|
macro_use_extern_crate = "warn"
|
|
# TODO missing_docs = "warn"
|
|
trivial_casts = "warn"
|
|
trivial_numeric_casts = "warn"
|
|
unsafe_code = "warn"
|
|
unused_import_braces = "warn"
|
|
unused_lifetimes = "warn"
|
|
unused_macro_rules = "warn"
|
|
unused_qualifications = "warn"
|
|
|
|
[lints.clippy]
|
|
allow_attributes = "warn"
|
|
allow_attributes_without_reason = "warn"
|
|
as_underscore = "warn"
|
|
assertions_on_result_states = "warn"
|
|
bool_to_int_with_if = "warn"
|
|
borrow_as_ptr = "warn"
|
|
case_sensitive_file_extension_comparisons = "warn"
|
|
cast_lossless = "warn"
|
|
cast_possible_truncation = "warn"
|
|
cast_possible_wrap = "warn"
|
|
cast_precision_loss = "warn"
|
|
cast_ptr_alignment = "warn"
|
|
cast_sign_loss = "warn"
|
|
checked_conversions = "warn"
|
|
clone_on_ref_ptr = "warn"
|
|
cloned_instead_of_copied = "warn"
|
|
copy_iterator = "warn"
|
|
create_dir = "warn"
|
|
dbg_macro = "warn"
|
|
decimal_literal_representation = "warn"
|
|
default_trait_access = "warn"
|
|
default_union_representation = "warn"
|
|
deref_by_slicing = "warn"
|
|
disallowed_script_idents = "warn"
|
|
doc_link_with_quotes = "warn"
|
|
empty_drop = "warn"
|
|
empty_enum = "warn"
|
|
empty_structs_with_brackets = "warn"
|
|
enum_glob_use = "warn"
|
|
error_impl_error = "warn"
|
|
exit = "warn"
|
|
expect_used = "warn"
|
|
expl_impl_clone_on_copy = "warn"
|
|
explicit_deref_methods = "warn"
|
|
explicit_into_iter_loop = "warn"
|
|
explicit_iter_loop = "warn"
|
|
filetype_is_file = "warn"
|
|
filter_map_next = "warn"
|
|
flat_map_option = "warn"
|
|
fn_params_excessive_bools = "warn"
|
|
fn_to_numeric_cast_any = "warn"
|
|
format_push_string = "warn"
|
|
from_iter_instead_of_collect = "warn"
|
|
get_unwrap = "warn"
|
|
host_endian_bytes = "warn"
|
|
if_not_else = "warn"
|
|
if_then_some_else_none = "warn"
|
|
ignored_unit_patterns = "warn"
|
|
implicit_clone = "warn"
|
|
implicit_hasher = "warn"
|
|
inconsistent_struct_constructor = "warn"
|
|
index_refutable_slice = "warn"
|
|
inefficient_to_string = "warn"
|
|
infinite_loop = "warn"
|
|
inline_always = "warn"
|
|
inline_asm_x86_att_syntax = "warn"
|
|
inline_asm_x86_intel_syntax = "warn"
|
|
into_iter_without_iter = "warn"
|
|
invalid_upcast_comparisons = "warn"
|
|
items_after_statements = "warn"
|
|
iter_not_returning_iterator = "warn"
|
|
iter_without_into_iter = "warn"
|
|
large_digit_groups = "warn"
|
|
large_futures = "warn"
|
|
large_include_file = "warn"
|
|
large_stack_arrays = "warn"
|
|
large_types_passed_by_value = "warn"
|
|
let_underscore_must_use = "warn"
|
|
let_underscore_untyped = "warn"
|
|
linkedlist = "warn"
|
|
lossy_float_literal = "warn"
|
|
macro_use_imports = "warn"
|
|
manual_assert = "warn"
|
|
manual_instant_elapsed = "warn"
|
|
manual_let_else = "warn"
|
|
manual_ok_or = "warn"
|
|
manual_string_new = "warn"
|
|
many_single_char_names = "warn"
|
|
map_unwrap_or = "warn"
|
|
match_bool = "warn"
|
|
match_on_vec_items = "warn"
|
|
match_same_arms = "warn"
|
|
match_wild_err_arm = "warn"
|
|
match_wildcard_for_single_variants = "warn"
|
|
maybe_infinite_iter = "warn"
|
|
mem_forget = "warn"
|
|
mismatching_type_param_order = "warn"
|
|
missing_assert_message = "warn"
|
|
missing_asserts_for_indexing = "warn"
|
|
missing_fields_in_debug = "warn"
|
|
multiple_inherent_impl = "warn"
|
|
mut_mut = "warn"
|
|
mutex_atomic = "warn"
|
|
naive_bytecount = "warn"
|
|
needless_bitwise_bool = "warn"
|
|
needless_continue = "warn"
|
|
needless_for_each = "warn"
|
|
needless_pass_by_value = "warn"
|
|
needless_raw_string_hashes = "warn"
|
|
needless_raw_strings = "warn"
|
|
negative_feature_names = "warn"
|
|
no_effect_underscore_binding = "warn"
|
|
no_mangle_with_rust_abi = "warn"
|
|
non_ascii_literal = "warn"
|
|
panic = "warn"
|
|
panic_in_result_fn = "warn"
|
|
partial_pub_fields = "warn"
|
|
print_stderr = "warn"
|
|
print_stdout = "warn"
|
|
ptr_as_ptr = "warn"
|
|
ptr_cast_constness = "warn"
|
|
pub_without_shorthand = "warn"
|
|
range_minus_one = "warn"
|
|
range_plus_one = "warn"
|
|
rc_buffer = "warn"
|
|
rc_mutex = "warn"
|
|
redundant_closure_for_method_calls = "warn"
|
|
redundant_else = "warn"
|
|
redundant_feature_names = "warn"
|
|
redundant_type_annotations = "warn"
|
|
ref_binding_to_reference = "warn"
|
|
ref_option_ref = "warn"
|
|
ref_patterns = "warn"
|
|
rest_pat_in_fully_bound_structs = "warn"
|
|
return_self_not_must_use = "warn"
|
|
same_functions_in_if_condition = "warn"
|
|
same_name_method = "warn"
|
|
semicolon_inside_block = "warn"
|
|
shadow_same = "warn"
|
|
should_panic_without_expect = "warn"
|
|
single_match_else = "warn"
|
|
stable_sort_primitive = "warn"
|
|
str_to_string = "warn"
|
|
string_add = "warn"
|
|
string_add_assign = "warn"
|
|
string_lit_chars_any = "warn"
|
|
string_to_string = "warn"
|
|
struct_excessive_bools = "warn"
|
|
struct_field_names = "warn"
|
|
suspicious_xor_used_as_pow = "warn"
|
|
tests_outside_test_module = "warn"
|
|
todo = "warn"
|
|
transmute_ptr_to_ptr = "warn"
|
|
trivially_copy_pass_by_ref = "warn"
|
|
try_err = "warn"
|
|
unchecked_duration_subtraction = "warn"
|
|
undocumented_unsafe_blocks = "warn"
|
|
unicode_not_nfc = "warn"
|
|
unimplemented = "warn"
|
|
uninlined_format_args = "warn"
|
|
unnecessary_box_returns = "warn"
|
|
unnecessary_join = "warn"
|
|
unnecessary_safety_comment = "warn"
|
|
unnecessary_safety_doc = "warn"
|
|
unnecessary_self_imports = "warn"
|
|
unnecessary_wraps = "warn"
|
|
unneeded_field_pattern = "warn"
|
|
unnested_or_patterns = "warn"
|
|
unreadable_literal = "warn"
|
|
unsafe_derive_deserialize = "warn"
|
|
unseparated_literal_suffix = "warn"
|
|
unused_async = "warn"
|
|
unused_self = "warn"
|
|
unwrap_in_result = "warn"
|
|
use_debug = "warn"
|
|
used_underscore_binding = "warn"
|
|
verbose_bit_mask = "warn"
|
|
verbose_file_reads = "warn"
|
|
wildcard_dependencies = "warn"
|
|
zero_sized_map_values = "warn"
|
|
|