You've already forked AstralRinth
forked from didirus/AstralRinth
* Begin work on worlds backend * Finish implementing get_profile_worlds and get_server_status (except pinning) * Create TS types and manually copy unparsed chat components * Clippy fix * Update types.d.ts * Initial worlds UI work * Fix api::get_profile_worlds to take in a relative path * sanitize & security update * Fix sanitizePotentialFileUrl * Fix sanitizePotentialFileUrl (for real) * Fix empty motd causing error * Finally actually fix world icons * Fix world icon not being visible on non-Windows * Use the correct generics to take in AppHandle * Implement start_join_singleplayer_world and start_join_server for modern versions * Don't error if server has no cached icon * Migrate to own server pinging * Ignore missing server hidden field and missing saves dir * Update world list frontend * More frontend work * Server status player sample can be absent * Fix refresh state * Add get_profile_protocol_version * Add protocol_version column to database * SQL INTEGER is i64 in sqlx * sqlx prepare * Cache protocol version in database * Continue worlds UI work * Fix motds being bold * Remove legacy pinging and add a 30-second timeout * Remove pinned for now and match world (and server) parsing closer to spec * Move type ServerStatus to worlds.ts * Implement add_server_to_profile * Fix pack_status being ignored when joining from launcher * Make World path field be relative * Implement rename_world and reset_world_icon * Clippy fix * Fix rename_world * UI enhancements * Implement backup_world, which returns the backup size in bytes * Clippy fix * Return index when adding servers to profile * Fix backup * Implement delete_world * Implement edit_server_in_profile and remove_server_from_profile * Clippy fix * Log server joins * Add edit and delete support * Fix ts errors * Fix minecraft font * Switch font out for non-monospaced. * Fix font proper * Some more world cleanup, handle play state, check quickplay compatibility * Clear the cached protocol version when a profile's game version is changed * Fix tint colors in navbar * Fix server protocol version pinging * UI fixes * Fix protocol version handler * Fix MOTD parsing * Add worlds_updated profile event * fix pkg * Functional home screen with worlds * lint * Fix incorrect folder creation * Make items clickable * Add locked field to SingleplayerWorld indicating whether the world is locked by the game * Implement locking frontend * Fix locking condition * Split worlds_updated profile event into servers_updated and world_updated * Fix compile error * Use port from resolve SRV record * Fix serialization of ProfilePayload and ProfilePayloadType * Individual singleplayer world refreshing * Log when worlds are perceived to be updated * Push logging + total refresh lock * Unlisten fixes * Highlight current world when clicked * Launcher logs refactor (#3444) * Switch live log to use STDOUT * fix clippy, legacy logs support * Fix lint * Handle non-XML log messages in XML logging, and don't escape log messages into XML --------- Co-authored-by: Josiah Glosson <soujournme@gmail.com> * Update incompatibility text * Home page fixes, and unlock after close * Remove logging * Add join log database migration * Switch server join timing to being in the database instead of in a separate log file * Create optimized get_recent_worlds function that takes in a limit * Update dependencies and fix Cargo.lock * temp disable overflow menus * revert home page changes * Enable overflow menus again * Remove list * Revert * Push dev tools * Remove default filter * Disable debug renderer * Fix random app errors * Refactor * Fix missing computed import * Fix light mode issues * Fix TS errors * Lint * Fix bad link in change modpack version modal * fix lint * fix intl --------- Co-authored-by: Josiah Glosson <soujournme@gmail.com> Co-authored-by: Jai A <jaiagr+gpg@pm.me> Co-authored-by: Jai Agrawal <18202329+Geometrically@users.noreply.github.com>
79 lines
2.2 KiB
TOML
79 lines
2.2 KiB
TOML
[package]
|
|
name = "theseus"
|
|
version = "0.9.3"
|
|
authors = ["Jai A <jaiagr+gpg@pm.me>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
bytes = "1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_ini = "0.2.0"
|
|
sha1_smol = { version = "1.0.0", features = ["std"] }
|
|
sha2 = "0.10.8"
|
|
url = { version = "2.2", features = ["serde"] }
|
|
uuid = { version = "1.1", features = ["serde", "v4"] }
|
|
zip = "0.6.5"
|
|
async_zip = { version = "0.0.17", features = ["chrono", "tokio-fs", "deflate", "bzip2", "zstd", "deflate64"] }
|
|
flate2 = "1.0.28"
|
|
tempfile = "3.5.0"
|
|
dashmap = { version = "6.0.1", features = ["serde"] }
|
|
quick-xml = { version = "0.37", features = ["async-tokio"] }
|
|
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
|
daedalus = { path = "../../packages/daedalus" }
|
|
dirs = "5.0.1"
|
|
|
|
regex = "1.5"
|
|
sys-info = "0.9.0"
|
|
sysinfo = "0.30.8"
|
|
thiserror = "1.0"
|
|
either = "1.13"
|
|
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = { version = "0.3.18", features = ["chrono", "env-filter"] }
|
|
tracing-error = "0.2.0"
|
|
|
|
paste = { version = "1.0" }
|
|
|
|
tauri = { version = "2.0.0-rc", optional = true }
|
|
indicatif = { version = "0.17.3", optional = true }
|
|
|
|
async-tungstenite = { version = "0.27.0", features = ["tokio-runtime", "tokio-rustls-webpki-roots"] }
|
|
futures = "0.3"
|
|
reqwest = { version = "0.12.3", features = ["json", "stream", "deflate", "gzip", "brotli", "rustls-tls", "charset", "http2", "macos-system-configuration"], default-features = false }
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-util = "0.7"
|
|
async-recursion = "1.0.4"
|
|
fs4 = { version = "0.13", features = ["tokio"] }
|
|
async-walkdir = "2.1"
|
|
|
|
notify = { version = "6.1.1", default-features = false }
|
|
notify-debouncer-mini = { version = "0.4.1", default-features = false }
|
|
|
|
lazy_static = "1.4.0"
|
|
dunce = "1.0.3"
|
|
|
|
whoami = "1.4.0"
|
|
|
|
discord-rich-presence = "0.2.4"
|
|
|
|
p256 = { version = "0.13.2", features = ["ecdsa"] }
|
|
rand = "0.8"
|
|
byteorder = "1.5.0"
|
|
base64 = "0.22.0"
|
|
|
|
sqlx = { version = "0.8.2", features = [ "runtime-tokio", "sqlite", "macros" ] }
|
|
|
|
quartz_nbt = { version = "0.2", features = ["serde"] }
|
|
hickory-resolver = "0.25"
|
|
|
|
ariadne = { path = "../ariadne" }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winreg = "0.52.0"
|
|
|
|
[features]
|
|
tauri = ["dep:tauri"]
|
|
cli = ["dep:indicatif"]
|