[package] name = "rdf-store-rs" description = "Various RDF-store related generic structs and traits" version = "0.0.10" edition = "2021" authors = [ "Jacobus Geluk ", "Marcelo Barbieri " ] publish = true repository = "https://github.com/EKGF/rdf-store-rs" keywords = [ "rdf", "sparql", "database", "graph-database"] categories = [ "database" ] license-file = "LICENSE" rust-version = "1.64" readme = "README.md" #documentation = "https://ekgf.github.io/rdf-store-rs/rdf_store_rs/index.html#" documentation = "https://docs.rs/rdf-store-rs/" exclude = [ ".github/*", ".idea/*", ".cargo/*", "rust-toolchain.toml", "cog.toml" ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] tracing = "0.1.37" tracing-subscriber = { version = "0.3.16", features = ["env-filter"] } tracing-log = { version = "0.1.3", features = ["env_logger"] } tracing-core = { version = "0.1.30", features = ["valuable"] } env_logger = "0.10.0" mime = "0.3.16" lazy_static = "1.4.0" thiserror = "1.0.31" fancy-regex = "0.13.0" colored = "2.1.0" ignore = "0.4.22" iref = "3.1.3" indoc = "2.0.4" num_enum = "0.7.2" nom = { version="7.1.3", optional=true} phf = { version = "0.11", features = ["macros"] } r2d2 = "0.8.10" iri-string = { version = "0.7.0", features = [ "serde", "alloc" ] } serde = { version = "1", optional = true, features = ["derive"]} serde_json = { version = "1", optional = true } oxrdf = { version = "0.1", optional = true } chrono = { version = "0.4", features = ["serde"] } urlencoding = "2.1" getrandom = {version = "0.2", optional = true } [target.'cfg(not(target_arch = "wasm32"))'.dependencies.rdftk_iri] git = "https://github.com/EKGF/rust-rdftk" version = "0.1.9" optional = true default-features = false features = ["uuid_iri"] [dev-dependencies] test-log = { version = "0.2", default-features = false, features = ["trace"] } tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "ansi"] } [build-dependencies] curl = "0.4" lazy_static = "1.4.0" zip = "0.6" bindgen = "0.69" [package.metadata.docs.rs] rustc-args = ["--cfg", "docsrs"] [features] default = ["nom"] rdftk-support = ["no-wasm", "rdftk_iri"] nom-support = ["nom"] oxigraph = ["dep:oxrdf"] serde = ["dep:serde", "dep:serde_json"] no-wasm = [] wasm-support = [ "getrandom/js" ]