mirror of
https://github.com/modrinth/code.git
synced 2026-07-31 21:26:40 +00:00
* Add consume batching delay * maybe fix * max batch size * more logging * parallelize remove tasks * delete/upsert project/version messages * prepare * more logging * log number of docs * try more targeted, homogenous version change ops * ensure only necessary fields are serialized into typesense * disable index background task * wip: script changes * don't facet by project id * fix * fix clippy * batch by document and dedup loaders * fix test * wip: projects/versions collections * clean up SearchBackend interface * cleanup pass * cleanup pass 2 * standardise fn names * cleanup pass * fix compile * factor out filter rewriting * query perf * put categories into the project doc * wip: search filter AST * doc comment * more AST normalization * (temp) convert search request errors into internal errors * implement unary NOT * tombi fmt * fix tests * revert request error * try increase stack size
135 lines
3.9 KiB
TOML
135 lines
3.9 KiB
TOML
[package]
|
|
name = "theseus"
|
|
# The actual version is set by the theseus-build workflow on tagging
|
|
version = "1.0.0-local"
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
ariadne = { workspace = true }
|
|
async-minecraft-ping = { workspace = true, features = ["srv"] }
|
|
async-recursion = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
async-tungstenite = { workspace = true, features = [
|
|
"tokio-runtime",
|
|
"tokio-rustls-webpki-roots"
|
|
] }
|
|
async-walkdir = { workspace = true }
|
|
async_zip = { workspace = true, features = [
|
|
"bzip2",
|
|
"chrono",
|
|
"deflate",
|
|
"deflate64",
|
|
"tokio-fs",
|
|
"zstd",
|
|
] }
|
|
base64 = { workspace = true }
|
|
bon = { workspace = true }
|
|
bytemuck = { workspace = true, features = ["extern_crate_alloc"] }
|
|
bytes = { workspace = true, features = ["serde"] }
|
|
chardetng = { workspace = true }
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
daedalus = { workspace = true }
|
|
dashmap = { workspace = true, features = ["serde"] }
|
|
data-url = { workspace = true }
|
|
derive_more = { workspace = true, features = ["display"] }
|
|
dirs = { workspace = true }
|
|
discord-rich-presence = { workspace = true }
|
|
dunce = { workspace = true }
|
|
either = { workspace = true }
|
|
encoding_rs = { workspace = true }
|
|
enumset = { workspace = true }
|
|
eyre = { workspace = true }
|
|
flate2 = { workspace = true }
|
|
fs4 = { workspace = true, features = ["tokio"] }
|
|
futures = { workspace = true, features = ["alloc", "async-await"] }
|
|
futures-lite = { workspace = true }
|
|
governor = { workspace = true }
|
|
heck = { workspace = true }
|
|
hickory-resolver = { workspace = true }
|
|
httpdate = { workspace = true }
|
|
indicatif = { workspace = true, optional = true }
|
|
itertools = { workspace = true }
|
|
modrinth-content-management = { workspace = true }
|
|
notify = { workspace = true }
|
|
notify-debouncer-mini = { workspace = true }
|
|
p256 = { workspace = true, features = ["ecdsa"] }
|
|
parking_lot = { workspace = true }
|
|
paste = { workspace = true }
|
|
path-util = { workspace = true }
|
|
phf = { workspace = true }
|
|
png = { workspace = true }
|
|
quartz_nbt = { workspace = true, features = ["serde"] }
|
|
quick-xml = { workspace = true, features = ["async-tokio"] }
|
|
rand = { workspace = true }
|
|
regex = { workspace = true }
|
|
reqwest = { workspace = true, features = [
|
|
"brotli",
|
|
"charset",
|
|
"deflate",
|
|
"gzip",
|
|
"http2",
|
|
"json",
|
|
"macos-system-configuration",
|
|
"multipart",
|
|
"rustls-tls-webpki-roots",
|
|
"stream",
|
|
] }
|
|
rgb = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_ini = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde_with = { workspace = true }
|
|
sha1_smol = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
shlex = { workspace = true }
|
|
sqlx = { workspace = true, features = [
|
|
"json",
|
|
"macros",
|
|
"migrate",
|
|
"runtime-tokio",
|
|
"sqlite",
|
|
"uuid",
|
|
] }
|
|
sysinfo = { workspace = true, features = ["disk", "system"] }
|
|
tauri = { workspace = true, features = ["unstable"], optional = true }
|
|
tempfile = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = [
|
|
"fs",
|
|
"io-util",
|
|
"macros",
|
|
"net",
|
|
"process",
|
|
"sync",
|
|
"time",
|
|
] }
|
|
tokio-util = { workspace = true, features = ["compat", "io", "io-util", "time"] }
|
|
tracing = { workspace = true }
|
|
tracing-error = { workspace = true }
|
|
tracing-subscriber = { workspace = true, features = ["chrono", "env-filter"] }
|
|
url = { workspace = true, features = ["serde"] }
|
|
urlencoding = { workspace = true }
|
|
uuid = { workspace = true, features = ["serde", "v4"] }
|
|
whoami = { workspace = true }
|
|
zbus = { workspace = true }
|
|
zip = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
dotenvy = { workspace = true }
|
|
dunce = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
cidre = { workspace = true, features = ["blocks", "nw"] }
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
windows = { workspace = true, features = ["Networking_Connectivity"] }
|
|
windows-core = { workspace = true }
|
|
winreg = { workspace = true }
|
|
|
|
[features]
|
|
cli = ["dep:indicatif"]
|
|
tauri = ["dep:tauri"]
|
|
|
|
[lints]
|
|
workspace = true
|