be less specific

This commit is contained in:
Corwin 2024-05-17 12:05:14 +01:00
parent bcafe7be75
commit cd7bdffba4
No known key found for this signature in database
3 changed files with 5 additions and 5 deletions

View file

@ -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"

View file

@ -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]

View file

@ -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.