You've already forked AstralRinth
forked from didirus/AstralRinth
* chore: inherit dependencies from workspace, optimize some deps out * Update bitflags from 2.9.0 to 2.9.1 * Fix temp directory leak in check_java_at_filepath * Fix build * Fix lint * chore(app-lib): refactor overkill `futures` executor usage to Tokio MPSC * chore: fix Clippy lint * tweak: optimize out dependency on OpenSSL source build Contrary to what I expected before, this was caused due to the Tauri updater plugin using a different TLS stack than everything else. * chore(labrinth): drop now unused dependency * Update zip because 2.6.1 got yanked * Downgrade weezl to 0.1.8 * Mention that p256 is also a blocker for rand 0.9 * chore: sidestep GitHub review requirements * chore: sidestep GitHub review requirements (2) * chore: sidestep GitHub review requirements (3) --------- Co-authored-by: Josiah Glosson <soujournme@gmail.com>
21 lines
686 B
TOML
21 lines
686 B
TOML
[package]
|
|
name = "daedalus"
|
|
version = "0.2.3"
|
|
authors = ["Jai A <jai@modrinth.com>"]
|
|
edition = "2024"
|
|
license = "MIT"
|
|
description = "Utilities for querying and parsing Minecraft metadata"
|
|
repository = "https://github.com/modrinth/daedalus/"
|
|
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"]
|
|
keywords = ["minecraft", "launcher"]
|
|
categories = ["game-development", "api-bindings"]
|
|
readme = "README.md"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json.workspace = true
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
thiserror.workspace = true
|