2026-06-08 19:33:49 -04:00
|
|
|
[workspace]
|
|
|
|
|
resolver = "2"
|
|
|
|
|
members = [
|
2026-08-05 18:33:30 -04:00
|
|
|
"graph",
|
2026-08-12 14:11:47 -04:00
|
|
|
"inference",
|
2026-06-08 19:33:49 -04:00
|
|
|
"publish",
|
|
|
|
|
"search",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
2026-08-05 18:33:30 -04:00
|
|
|
gl-graph = { path = "graph" }
|
2026-08-12 14:11:47 -04:00
|
|
|
gl-inference = { path = "inference" }
|
2026-06-08 19:33:49 -04:00
|
|
|
gl-search = { path = "search" }
|
|
|
|
|
ldp = { path = "../../ldp/ldp", features = ["keyed"] }
|
|
|
|
|
|
|
|
|
|
async-trait = "0.1"
|
2026-08-05 11:21:25 -04:00
|
|
|
base64 = "0.23"
|
2026-07-02 14:09:54 -04:00
|
|
|
bytes = "1.12"
|
2026-08-05 11:21:25 -04:00
|
|
|
clap = { version = "4.6", features = ["derive"] }
|
2026-06-08 19:33:49 -04:00
|
|
|
color-eyre = "0.6"
|
|
|
|
|
futures = "0.3"
|
|
|
|
|
http = "1.4"
|
2026-06-23 21:55:52 -04:00
|
|
|
iced = { git = "https://github.com/iced-rs/iced.git", branch = "master", features = ["advanced", "tokio"] }
|
2026-08-12 14:11:47 -04:00
|
|
|
num-traits = "0.2"
|
2026-06-08 19:33:49 -04:00
|
|
|
oxigraph = { version = "0.5", features = ["rdf-12"] }
|
|
|
|
|
oxilangtag = "0.1"
|
|
|
|
|
parse_link_header = "0.4"
|
2026-07-20 23:53:33 -04:00
|
|
|
pin-project-lite = "0.2"
|
2026-08-12 14:11:47 -04:00
|
|
|
prost = "0.14"
|
|
|
|
|
rand = "0.10"
|
2026-08-16 15:50:10 -04:00
|
|
|
rayon = "1.12"
|
2026-06-08 19:33:49 -04:00
|
|
|
rfd = "0.17"
|
|
|
|
|
slotmap = "1.1"
|
2026-08-20 20:43:18 -04:00
|
|
|
spargebra = "0.4"
|
2026-08-05 11:21:25 -04:00
|
|
|
subtitler = "2.6"
|
2026-06-08 19:33:49 -04:00
|
|
|
tantivy = "0.26"
|
|
|
|
|
tar = "0.4"
|
|
|
|
|
thiserror = "2.0"
|
2026-07-20 23:53:33 -04:00
|
|
|
tokio = { version = "1.53", features = ["rt", "rt-multi-thread", "macros", "fs"] }
|
2026-08-12 14:11:47 -04:00
|
|
|
tonic = "0.14"
|
|
|
|
|
tonic-prost = "0.14"
|
|
|
|
|
tonic-prost-build = "0.14"
|
2026-06-08 19:33:49 -04:00
|
|
|
tracing = "0.1"
|
|
|
|
|
tracing-appender = "0.2"
|
2026-07-20 23:53:33 -04:00
|
|
|
tracing-futures = "0.2"
|
2026-08-13 09:44:46 -04:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
|
url = "2.5"
|