28 lines
736 B
TOML
28 lines
736 B
TOML
[package]
|
|
name = "game"
|
|
publish = false
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[dependencies]
|
|
cgmath = "0.18"
|
|
discord-sdk = { version = "0.1.4", git = "https://github.com/EmbarkStudios/discord-sdk", branch = "main", commit = "3ed27a06c71d88269c7ac29cf5151cfb7f24f0ef" }
|
|
tokio = { version = "1.0", features = ["macros"] }
|
|
tracing = { version = "0.1", features = ["log"] }
|
|
serde = { version = "1.0.126", features = ["derive"] }
|
|
serde_json = "1.0.64"
|
|
thiserror = "1.0"
|
|
chrono = "0.4"
|
|
rust-embed = "6.2.0"
|
|
raylib = "3.5"
|
|
puffin = "0.9"
|
|
puffin_http = "0.6"
|
|
|
|
[dev-dependencies]
|
|
puffin_viewer = "0.6"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|