* refactor: inherit Clippy lint config and Rust edition from workspace This also ensures developers running `clippy lint` locally get the same lints as during CI, especially when the Rust toolchain version is fixed through a `rust-toolchain.toml` file. * chore(clippy.toml): bump MSRV to 1.87
24 lines
720 B
TOML
24 lines
720 B
TOML
[package]
|
|
name = "daedalus"
|
|
version = "0.2.3"
|
|
authors = ["Jai A <jai@modrinth.com>"]
|
|
edition.workspace = true
|
|
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
|
|
|
|
[lints]
|
|
workspace = true
|