Skip to content

Commit 7891633

Browse files
committed
First steps towards a web service
1 parent d245c8f commit 7891633

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+927
-2367
lines changed

Cargo.lock

Lines changed: 317 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ members = [
99
"lib/graphfusion-physical",
1010
"lib/graphfusion-store",
1111
"lib/graphfusion",
12-
"testsuite"
13-
]
12+
"lib/graphfusion-web",
13+
"testsuite"]
1414
resolver = "2"
1515

1616
[workspace.package]
@@ -76,6 +76,7 @@ graphfusion-logical = { version = "=0.1.0", path = "lib/graphfusion-logical" }
7676
graphfusion-physical = { version = "=0.1.0", path = "lib/graphfusion-physical" }
7777
graphfusion-store = { version = "=0.1.0", path = "lib/graphfusion-store" }
7878
graphfusion = { version = "=0.1.0", path = "lib/graphfusion" }
79+
graphfusion-web = { version = "=0.1.0", path = "lib/graphfusion-web" }
7980

8081
[workspace.lints.rust]
8182
absolute_paths_not_starting_with_crate = "warn"

cli/Cargo.toml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@ license.workspace = true
66
readme = "README.md"
77
keywords = ["RDF", "SPARQL", "graph-database", "database"]
88
categories = ["command-line-utilities", "database"]
9-
repository = "https://github.com/oxigraph/oxigraph/tree/main/cli"
10-
homepage = "https://oxigraph.org/cli/"
9+
repository = "https://github.com/tobixdev/graphfusion/tree/main/cli"
1110
description = """
12-
Oxigraph CLI tool and SPARQL HTTP server
11+
GraphFusion CLI tool and SPARQL HTTP server
1312
"""
1413
edition.workspace = true
1514
rust-version.workspace = true
@@ -28,11 +27,9 @@ rustls-webpki = ["graphfusion/http-client-rustls-webpki"]
2827
[dependencies]
2928
anyhow.workspace = true
3029
clap = { workspace = true, features = ["derive"] }
31-
flate2.workspace = true
32-
oxhttp = { workspace = true, features = ["flate2"] }
3330
graphfusion.workspace = true
34-
rand.workspace = true
35-
url.workspace = true
31+
graphfusion-web.workspace = true
32+
tokio.workspace = true
3633

3734
[dev-dependencies]
3835
assert_cmd.workspace = true

0 commit comments

Comments
 (0)