31 lines
746 B
TOML
31 lines
746 B
TOML
|
|
[workspace]
|
||
|
|
resolver = "2"
|
||
|
|
members = [
|
||
|
|
"publish",
|
||
|
|
"search",
|
||
|
|
]
|
||
|
|
|
||
|
|
[workspace.dependencies]
|
||
|
|
gl-search = { path = "search" }
|
||
|
|
ldp = { path = "../../ldp/ldp", features = ["keyed"] }
|
||
|
|
|
||
|
|
async-trait = "0.1"
|
||
|
|
base64 = "0.22"
|
||
|
|
bytes = "1.11"
|
||
|
|
color-eyre = "0.6"
|
||
|
|
futures = "0.3"
|
||
|
|
http = "1.4"
|
||
|
|
iced = { git = "https://github.com/iced-rs/iced.git", branch = "master", features = ["tokio"] }
|
||
|
|
oxigraph = { version = "0.5", features = ["rdf-12"] }
|
||
|
|
oxilangtag = "0.1"
|
||
|
|
parse_link_header = "0.4"
|
||
|
|
rfd = "0.17"
|
||
|
|
slotmap = "1.1"
|
||
|
|
tantivy = "0.26"
|
||
|
|
tar = "0.4"
|
||
|
|
thiserror = "2.0"
|
||
|
|
tokio = { version = "1.52", features = ["rt", "rt-multi-thread", "macros", "fs"] }
|
||
|
|
tracing = "0.1"
|
||
|
|
tracing-appender = "0.2"
|
||
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|