mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 08:11:33 +11:00
Be less specific for version numbers (#700)
Some more places where version numbers were specified too much
This commit is contained in:
commit
c5ae7f1c2b
|
@ -6,6 +6,6 @@ edition = "2021"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libc = "0.2.154"
|
libc = "0.2"
|
||||||
mgba-sys = { version = "0.1.0", path = "../mgba-sys" }
|
mgba-sys = { version = "0.1.0", path = "../mgba-sys" }
|
||||||
thiserror = "1"
|
thiserror = "1"
|
|
@ -15,7 +15,7 @@ agb = { path = "../../agb", version = "0.20.0" }
|
||||||
generational-arena = { version = "0.2", default-features = false }
|
generational-arena = { version = "0.2", default-features = false }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
quote = "1.0.10"
|
quote = "1"
|
||||||
tiled = { version = "0.9.4", default-features = false }
|
tiled = { version = "0.9.4", default-features = false }
|
||||||
|
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
|
|
|
@ -12,17 +12,17 @@ crate-type = ["cdylib", "rlib"]
|
||||||
default = ["console_error_panic_hook"]
|
default = ["console_error_panic_hook"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
wasm-bindgen = "0.2.92"
|
wasm-bindgen = "0.2"
|
||||||
agb-debug = { path="../../agb-debug" }
|
agb-debug = { path="../../agb-debug" }
|
||||||
|
|
||||||
# The `console_error_panic_hook` crate provides better debugging of panics by
|
# The `console_error_panic_hook` crate provides better debugging of panics by
|
||||||
# logging them with `console.error`. This is great for development, but requires
|
# 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
|
# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for
|
||||||
# code size when deploying.
|
# 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]
|
[dev-dependencies]
|
||||||
wasm-bindgen-test = "0.3.42"
|
wasm-bindgen-test = "0.3"
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
# Tell `rustc` to optimize for small code size.
|
# Tell `rustc` to optimize for small code size.
|
||||||
|
|
Loading…
Reference in a new issue