Stephen Seo
41d2f786fc
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.
24 lines
582 B
TOML
24 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"
|