LD45/Cargo.toml

25 lines
581 B
TOML
Raw Normal View History

2019-10-05 00:28:41 +00:00
[package]
name = "ld45_one_and_all"
2022-06-07 07:03:45 +00:00
version = "0.1.1"
2019-10-05 00:28:41 +00:00
authors = ["Stephen Seo <seo.disparate@gmail.com>"]
2023-02-22 03:20:14 +00:00
edition = "2021"
2019-10-05 00:28:41 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-02-13 08:49:38 +00:00
#quicksilver = { version = "0.3.19", default-features = false, features = [ "fonts", "saving", "sounds" ] }
2019-10-05 00:28:41 +00:00
rand = "0.7.2"
2019-10-06 06:01:18 +00:00
serde = { version = "1.0.101", features = ["derive"] }
[build-dependencies]
bindgen = "0.64"
2023-02-22 03:20:14 +00:00
[lib]
name = "ld45_lib"
2023-02-22 05:21:50 +00:00
path = "src/lib.rs"
crate-type = ["rlib", "staticlib"]
2023-02-22 03:20:14 +00:00
[[bin]]
name = "ld45_bin"
2023-02-22 05:21:50 +00:00
path = "src/bin.rs"