You've already forked AstralRinth
forked from xxxOFFxxx/AstralRinth
* feat: consistently format all HTML, XML, JSON, CSS, JS, TS, SQL, TOML, YAML, and Markdown files * chore: deal with VS Code not being able to parse valid editorconfig syntax Sometimes I'm surprised that computers even work. * chore: get rid of IntelliJ IDE config files that should not be there These were already added to the `.gitignore` a long time ago, and now are being ignored by Prettier. * fix: rename `tooling-config` `format` script to `fix` for it to run with Turbo
128 lines
3.0 KiB
TOML
128 lines
3.0 KiB
TOML
[package]
|
|
name = "theseus"
|
|
version = "1.0.0-local" # The actual version is set by the theseus-build workflow on tagging
|
|
authors = ["Jai A <jaiagr+gpg@pm.me>"]
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
bytes = { workspace = true, features = ["serde"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json.workspace = true
|
|
serde_ini.workspace = true
|
|
serde_with.workspace = true
|
|
sha1_smol.workspace = true
|
|
sha2.workspace = true
|
|
url = { workspace = true, features = ["serde"] }
|
|
uuid = { workspace = true, features = ["serde", "v4"] }
|
|
zip.workspace = true
|
|
async_zip = { workspace = true, features = [
|
|
"chrono",
|
|
"tokio-fs",
|
|
"deflate",
|
|
"bzip2",
|
|
"zstd",
|
|
"deflate64",
|
|
] }
|
|
flate2.workspace = true
|
|
tempfile.workspace = true
|
|
dashmap = { workspace = true, features = ["serde"] }
|
|
quick-xml = { workspace = true, features = ["async-tokio"] }
|
|
enumset.workspace = true
|
|
chardetng.workspace = true
|
|
encoding_rs.workspace = true
|
|
hashlink.workspace = true
|
|
png.workspace = true
|
|
bytemuck.workspace = true
|
|
rgb.workspace = true
|
|
phf.workspace = true
|
|
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
daedalus.workspace = true
|
|
dirs.workspace = true
|
|
|
|
regex.workspace = true
|
|
sysinfo = { workspace = true, features = ["system", "disk"] }
|
|
thiserror.workspace = true
|
|
either.workspace = true
|
|
data-url.workspace = true
|
|
|
|
tracing.workspace = true
|
|
tracing-subscriber = { workspace = true, features = ["chrono", "env-filter"] }
|
|
tracing-error.workspace = true
|
|
|
|
paste.workspace = true
|
|
heck.workspace = true
|
|
|
|
tauri = { workspace = true, optional = true, features = ["unstable"] }
|
|
indicatif = { workspace = true, optional = true }
|
|
|
|
async-tungstenite = { workspace = true, features = ["tokio-runtime", "tokio-rustls-webpki-roots"] }
|
|
futures = { workspace = true, features = ["async-await", "alloc"] }
|
|
reqwest = { workspace = true, features = [
|
|
"json",
|
|
"stream",
|
|
"deflate",
|
|
"gzip",
|
|
"brotli",
|
|
"rustls-tls-webpki-roots",
|
|
"charset",
|
|
"http2",
|
|
"macos-system-configuration",
|
|
"multipart",
|
|
] }
|
|
tokio = { workspace = true, features = [
|
|
"time",
|
|
"io-util",
|
|
"net",
|
|
"sync",
|
|
"fs",
|
|
"macros",
|
|
"process",
|
|
] }
|
|
tokio-util = { workspace = true, features = ["compat", "io", "io-util"] }
|
|
async-recursion.workspace = true
|
|
fs4 = { workspace = true, features = ["tokio"] }
|
|
async-walkdir.workspace = true
|
|
async-compression = { workspace = true, features = ["tokio", "gzip"] }
|
|
|
|
notify.workspace = true
|
|
notify-debouncer-mini.workspace = true
|
|
|
|
dunce.workspace = true
|
|
|
|
whoami.workspace = true
|
|
|
|
discord-rich-presence.workspace = true
|
|
|
|
p256 = { workspace = true, features = ["ecdsa"] }
|
|
rand.workspace = true
|
|
base64.workspace = true
|
|
|
|
sqlx = { workspace = true, features = [
|
|
"runtime-tokio",
|
|
"sqlite",
|
|
"macros",
|
|
"migrate",
|
|
"json",
|
|
"uuid",
|
|
] }
|
|
|
|
quartz_nbt = { workspace = true, features = ["serde"] }
|
|
hickory-resolver.workspace = true
|
|
|
|
ariadne.workspace = true
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winreg.workspace = true
|
|
|
|
[build-dependencies]
|
|
dotenvy.workspace = true
|
|
dunce.workspace = true
|
|
|
|
[features]
|
|
tauri = ["dep:tauri"]
|
|
cli = ["dep:indicatif"]
|
|
|
|
[lints]
|
|
workspace = true
|