Skip to content

Commit 7d268a7

Browse files
committed
Another huge change to satisfy clippy
1 parent 89608a1 commit 7d268a7

File tree

185 files changed

+438
-11508
lines changed

Some content is hidden

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

185 files changed

+438
-11508
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,13 @@
22
members = [
33
"cli",
44
"lib/arrow-rdf",
5-
"lib/datamodel",
5+
"lib/model",
66
"lib/functions-scalar",
77
"lib/graphfusion-engine",
88
"lib/graphfusion-logical",
99
"lib/graphfusion-physical",
1010
"lib/graphfusion-store",
1111
"lib/graphfusion",
12-
"lib/sparesults",
13-
"lib/spargebra",
1412
"testsuite"
1513
]
1614
resolver = "2"
@@ -64,23 +62,20 @@ uuid = "1.14.0"
6462
zstd = ">=0.12, <0.14"
6563

6664
# Upstream Oxigraph dependencies
67-
oxsdatatypes = "0.2.1"
68-
oxiri = { version = "0.2.8" }
69-
oxrdf = { version = "0.2.3", features = ["rdf-star", "oxsdatatypes"] }
70-
oxttl = { version = "0.1.4", features = ["rdf-star"] }
71-
oxrdfio = { version = "0.1.4", features = ["rdf-star"] }
65+
oxttl = "0.1.4"
66+
oxrdfio = "0.1.4"
67+
sparesults = "0.2.4"
68+
spargebra = "0.3.5"
7269

7370
# Internal dependencies
7471
arrow-rdf = { version = "=0.1.0", path = "lib/arrow-rdf" }
75-
datamodel = { version = "=0.1.0", path = "lib/datamodel" }
72+
model = { version = "=0.1.0", path = "lib/model" }
7673
functions-scalar = { version = "=0.1.0", path = "lib/functions-scalar" }
7774
graphfusion-engine = { version = "=0.1.0", path = "lib/graphfusion-engine" }
7875
graphfusion-logical = { version = "=0.1.0", path = "lib/graphfusion-logical" }
7976
graphfusion-physical = { version = "=0.1.0", path = "lib/graphfusion-physical" }
8077
graphfusion-store = { version = "=0.1.0", path = "lib/graphfusion-store" }
8178
graphfusion = { version = "=0.1.0", path = "lib/graphfusion" }
82-
spargebra = { version = "=0.1.0", path = "lib/spargebra" }
83-
sparesults = { version = "=0.1.0", path = "lib/sparesults" }
8479

8580
[workspace.lints.rust]
8681
absolute_paths_not_starting_with_crate = "warn"

cli/Cargo.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "oxigraph-cli"
2+
name = "graphfusion-cli"
33
version.workspace = true
44
authors.workspace = true
55
license.workspace = true
@@ -15,7 +15,7 @@ edition.workspace = true
1515
rust-version.workspace = true
1616

1717
[[bin]]
18-
name = "oxigraph"
18+
name = "graphfusion"
1919
path = "src/main.rs"
2020
doc = false
2121

@@ -31,9 +31,7 @@ clap = { workspace = true, features = ["derive"] }
3131
flate2.workspace = true
3232
oxhttp = { workspace = true, features = ["flate2"] }
3333
graphfusion.workspace = true
34-
oxiri.workspace = true
3534
rand.workspace = true
36-
rayon-core.workspace = true
3735
url.workspace = true
3836

3937
[dev-dependencies]

cli/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ fn main() -> Result<()> {
1414
let complete_dir = out_dir.join("complete");
1515
create_dir_all(&complete_dir)?;
1616
for shell in Shell::value_variants() {
17-
clap_complete::generate_to(*shell, &mut app, "oxigraph", &complete_dir)?;
17+
clap_complete::generate_to(*shell, &mut app, "graphfusion", &complete_dir)?;
1818
}
1919

2020
let man_dir = out_dir.join("man");

0 commit comments

Comments
 (0)