LD45/Cargo.toml
Stephen Seo 41d2f786fc Fix build
Update dependencies:
  rand -> 0.8.5
  bindgen -> 0.69
(Also used `cargo update`.)

Update LICENSE year.

Fix build.rs based on change in bindgen.

Update to Raylib 5.0.

Fixes in src/original_impl.rs due to changes in rand dependency.
(RNG.gen_range(...) requires 1 range argument instead of two args.)

Minor tweaks to wasm/Makefile.
2024-02-13 12:00:30 +09:00

25 lines
582 B
TOML

[package]
name = "ld45_one_and_all"
version = "0.1.1"
authors = ["Stephen Seo <seo.disparate@gmail.com>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
#quicksilver = { version = "0.3.19", default-features = false, features = [ "fonts", "saving", "sounds" ] }
rand = "0.8.5"
#serde = { version = "1.0.101", features = ["derive"] }
[build-dependencies]
bindgen = "0.69"
[lib]
name = "ld45_lib"
path = "src/lib.rs"
crate-type = ["rlib", "staticlib"]
[[bin]]
name = "ld45_bin"
path = "src/bin.rs"