From cd7bdffba42b2cc60ecf80813386cf796ed3019e Mon Sep 17 00:00:00 2001 From: Corwin Date: Fri, 17 May 2024 12:05:14 +0100 Subject: [PATCH] be less specific --- emulator/mgba/Cargo.toml | 2 +- examples/the-purple-night/Cargo.toml | 2 +- website/backtrace/Cargo.toml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/emulator/mgba/Cargo.toml b/emulator/mgba/Cargo.toml index 250fa2ca..0b6257bc 100644 --- a/emulator/mgba/Cargo.toml +++ b/emulator/mgba/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -libc = "0.2.154" +libc = "0.2" mgba-sys = { version = "0.1.0", path = "../mgba-sys" } thiserror = "1" \ No newline at end of file diff --git a/examples/the-purple-night/Cargo.toml b/examples/the-purple-night/Cargo.toml index 3e221c0b..6d007109 100644 --- a/examples/the-purple-night/Cargo.toml +++ b/examples/the-purple-night/Cargo.toml @@ -15,7 +15,7 @@ agb = { path = "../../agb", version = "0.20.0" } generational-arena = { version = "0.2", default-features = false } [build-dependencies] -quote = "1.0.10" +quote = "1" tiled = { version = "0.9.4", default-features = false } [profile.dev] diff --git a/website/backtrace/Cargo.toml b/website/backtrace/Cargo.toml index aca7036c..1c5abfb2 100644 --- a/website/backtrace/Cargo.toml +++ b/website/backtrace/Cargo.toml @@ -12,17 +12,17 @@ crate-type = ["cdylib", "rlib"] default = ["console_error_panic_hook"] [dependencies] -wasm-bindgen = "0.2.92" +wasm-bindgen = "0.2" agb-debug = { path="../../agb-debug" } # The `console_error_panic_hook` crate provides better debugging of panics by # logging them with `console.error`. This is great for development, but requires # all the `std::fmt` and `std::panicking` infrastructure, so isn't great for # code size when deploying. -console_error_panic_hook = { version = "0.1.7", optional = true } +console_error_panic_hook = { version = "0.1", optional = true } [dev-dependencies] -wasm-bindgen-test = "0.3.42" +wasm-bindgen-test = "0.3" [profile.release] # Tell `rustc` to optimize for small code size.