triples 0.2.5

A lib and cli for storing data triples
Documentation
[[bin]]
name = "triples"
path = "src/main.rs"

[build-dependencies.lalrpop]
version = "0.22.1"

[dependencies.anyhow]
version = "1.0"

[dependencies.chrono]
version = "0.4"

[dependencies.clap]
features = ["derive"]
version = "4.5"

[dependencies.futures]
version = "0.3"

[dependencies.glob]
version = "0.3.2"

[dependencies.lalrpop-util]
features = ["lexer", "unicode"]
version = "0.22.1"

[dependencies.regex]
version = "1"

[dependencies.sqlx]
default-features = false
features = ["runtime-tokio-native-tls", "macros"]
version = "0.8"

[dependencies.tokio]
features = ["macros", "rt-multi-thread", "signal", "io-std"]
version = "1.43.0"

[dependencies.tokio-util]
version = "0.7"

[dependencies.tracing]
version = "0.1.41"

[dependencies.tracing-subscriber]
version = "0.3.19"

[dependencies.uuid]
features = ["v4"]
version = "1.13.1"

[features]
default = ["sqlite"]
disable-sqlite = []
postgres = ["sqlx/postgres", "disable-sqlite"]
sqlite = ["sqlx/sqlite"]

[lib]
name = "triples"
path = "src/lib.rs"

[package]
authors = ["Ed Sweeney <ed@onextent.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
description = "A lib and cli for storing data triples"
documentation = "https://docs.rs/triples"
edition = "2021"
keywords = ["rdf", "event-sourcing", "triples"]
license = "MIT"
name = "triples"
readme = "README.md"
repository = "https://github.com/navicore/triples"
version = "0.2.5"

[[test]]
name = "csv_export"
path = "tests/csv_export.rs"

[[test]]
name = "db_batch_load"
path = "tests/db_batch_load.rs"

[[test]]
name = "sparql_parsing"
path = "tests/sparql_parsing.rs"

[[test]]
name = "subject_parsing"
path = "tests/subject_parsing.rs"

[[test]]
name = "turtle_body_parsing"
path = "tests/turtle_body_parsing.rs"

[[test]]
name = "turtle_prefix_parsing"
path = "tests/turtle_prefix_parsing.rs"