|
|
|
[package]
|
|
|
|
name = "oxigraph-cli"
|
|
|
|
version = "0.4.0-alpha.3"
|
|
|
|
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["RDF", "SPARQL", "graph-database", "database"]
|
|
|
|
categories = ["command-line-utilities", "database"]
|
|
|
|
repository = "https://github.com/oxigraph/oxigraph/tree/main/cli"
|
|
|
|
homepage = "https://oxigraph.org/cli/"
|
|
|
|
description = """
|
|
|
|
Oxigraph command line toolkit and SPARQL HTTP server
|
|
|
|
"""
|
|
|
|
edition = "2021"
|
|
|
|
rust-version = "1.70"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "oxigraph"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["native-tls"]
|
|
|
|
native-tls = ["oxigraph/http-client-native-tls"]
|
|
|
|
rocksdb-pkg-config = ["oxigraph/rocksdb-pkg-config"]
|
|
|
|
rustls-native = ["oxigraph/http-client-rustls-native"]
|
|
|
|
rustls-webpki = ["oxigraph/http-client-rustls-webpki"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0.72"
|
|
|
|
oxhttp = { version = "0.2.0-alpha.3", features = ["flate2"] }
|
|
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
|
|
oxigraph = { version = "0.4.0-alpha.3", path = "../lib" }
|
|
|
|
rand = "0.8"
|
|
|
|
url = "2.4"
|
|
|
|
oxiri = "0.2.3-alpha.1"
|
|
|
|
flate2 = "1.0"
|
|
|
|
rayon-core = "1.11"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
assert_cmd = "2.0"
|
|
|
|
assert_fs = "1.0"
|
|
|
|
escargot = "0.5"
|
|
|
|
predicates = ">=2.0, <4.0"
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|