1
0
Fork 0
mirror of https://github.com/doukutsu-rs/doukutsu-rs synced 2025-07-27 07:20:51 +00:00
doukutsu-rs/Cargo.toml

119 lines
4.6 KiB
TOML
Raw Permalink Normal View History

2020-08-18 16:46:07 +00:00
[package]
name = "doukutsu-rs"
2021-08-13 01:46:41 +00:00
description = "A re-implementation of Cave Story (Doukutsu Monogatari) engine"
2025-03-08 00:14:58 +00:00
version = "0.102.0"
authors = ["Alula", "dawnDus"]
2022-11-19 17:20:03 +00:00
edition = "2021"
2024-03-25 16:06:47 +00:00
rust-version = "1.65"
2020-08-18 16:46:07 +00:00
2021-02-24 08:28:47 +00:00
[lib]
2021-03-23 03:40:02 +00:00
crate-type = ["lib"]
[[bin]]
name = "doukutsu-rs"
path = "src/main.rs"
test = false
bench = false
required-features = ["exe"]
2020-08-18 16:46:07 +00:00
[profile.release]
# This is intentional. Enabling LTO inflates build times and does not provide us any significant benefits.
2023-01-25 17:23:15 +00:00
lto = "off"
2021-10-14 04:54:11 +00:00
panic = "abort"
2023-01-25 17:23:15 +00:00
codegen-units = 256
incremental = true
split-debuginfo = "packed"
2020-08-18 16:46:07 +00:00
[profile.dev.package."*"]
opt-level = 3
2022-12-01 13:30:59 +00:00
overflow-checks = false
2023-01-25 17:23:15 +00:00
codegen-units = 256
2021-08-13 01:46:41 +00:00
[package.metadata.bundle]
name = "doukutsu-rs"
identifier = "io.github.doukutsu_rs"
2025-01-08 15:16:54 +00:00
icon = ["res/macos/16x16.png", "res/macos/16x16@2x.png", "res/macos/32x32.png", "res/macos/32x32@2x.png", "res/macos/128x128.png", "res/macos/128x128@2x.png", "res/macos/256x256.png", "res/macos/256x256@2x.png", "res/macos/512x512.png", "res/macos/512x512@2x.png"]
2025-03-08 00:14:58 +00:00
version = "0.102.0"
2021-08-13 01:46:41 +00:00
resources = ["data"]
2023-03-24 10:52:55 +00:00
copyright = "Copyright (c) 2020-2023 doukutsu-rs contributors"
2021-08-13 01:46:41 +00:00
category = "Game"
osx_minimum_system_version = "10.12"
2021-01-01 01:46:01 +00:00
[features]
default = ["default-base", "backend-sdl", "render-opengl", "exe", "webbrowser", "discord-rpc"]
2022-11-19 17:20:03 +00:00
default-base = ["ogg-playback"]
2021-02-10 20:14:09 +00:00
ogg-playback = ["lewton"]
2021-03-23 03:40:02 +00:00
backend-sdl = ["sdl2", "sdl2-sys"]
2021-04-14 10:09:40 +00:00
backend-glutin = ["winit", "glutin", "render-opengl"]
2022-12-01 13:30:59 +00:00
backend-horizon = []
2021-04-14 10:09:40 +00:00
render-opengl = []
discord-rpc = ["discord-rich-presence"]
2022-11-19 17:20:03 +00:00
netplay = ["serde_cbor"]
2021-01-01 01:46:01 +00:00
editor = []
2021-03-23 03:40:02 +00:00
exe = []
android = []
2021-01-01 01:46:01 +00:00
2020-08-18 16:46:07 +00:00
[dependencies]
2021-02-24 08:28:47 +00:00
#glutin = { path = "./3rdparty/glutin/glutin", optional = true }
2021-04-28 19:27:22 +00:00
#winit = { path = "./3rdparty/winit", optional = true, default_features = false, features = ["x11"] }
2022-11-21 14:16:57 +00:00
#sdl2 = { path = "./3rdparty/rust-sdl2", optional = true, features = ["unsafe_textures", "bundled", "static-link"] }
#sdl2-sys = { path = "./3rdparty/rust-sdl2/sdl2-sys", optional = true, features = ["bundled", "static-link"] }
2022-12-01 13:39:07 +00:00
#cpal = { path = "./3rdparty/cpal" }
2021-02-10 20:14:09 +00:00
byteorder = "1.4"
clap = { version = "4.5.40", default_features = false, features = ["std", "help", "usage", "error-context", "cargo", "derive"] }
case_insensitive_hashmap = "1.0.0"
2022-11-21 14:15:51 +00:00
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
2025-04-28 14:15:56 +00:00
cpal = { git = "https://github.com/doukutsu-rs/cpal", rev = "ce731c58b7f4759a0f4007b392e2b7f4716a347c" }
2021-01-27 18:20:47 +00:00
directories = "3"
discord-rich-presence = { version = "0.2", optional = true }
2022-01-06 01:11:17 +00:00
downcast = "0.11"
encoding_rs = "0.8.33"
2023-05-11 14:40:11 +00:00
fern = "0.6.2"
2023-01-25 14:25:42 +00:00
glutin = { git = "https://github.com/doukutsu-rs/glutin.git", rev = "2dd95f042e6e090d36f577cbea125560dd99bd27", optional = true, default_features = false, features = ["x11"] }
2024-05-28 22:55:57 +00:00
imgui = { git = "https://github.com/imgui-rs/imgui-rs.git", rev = "5d771a83b82c5cc3dd58cca3f969d900369262e6" }
2022-11-19 17:20:03 +00:00
image = { version = "0.24", default-features = false, features = ["png", "bmp"] }
2021-02-10 20:14:09 +00:00
itertools = "0.10"
2022-11-19 17:20:03 +00:00
lazy_static = "1.4"
lewton = { version = "0.10", optional = true }
2020-08-18 16:46:07 +00:00
log = "0.4"
2022-11-19 17:20:03 +00:00
num-derive = "0.3"
num-traits = "0.2"
open = "3.2"
2022-11-19 17:20:03 +00:00
paste = "1.0"
2022-11-21 14:15:51 +00:00
pelite = { version = ">=0.9.2", default-features = false, features = ["std"] }
2025-07-02 08:58:59 +00:00
sdl2 = { git = "https://github.com/doukutsu-rs/rust-sdl2.git", rev = "244ae85833cff4f97ab4b58331741be20e422bd7", optional = true, features = ["unsafe_textures", "bundled", "static-link"] }
sdl2-sys = { git = "https://github.com/doukutsu-rs/rust-sdl2.git", rev = "244ae85833cff4f97ab4b58331741be20e422bd7", optional = true, features = ["bundled", "static-link"] }
2022-11-20 19:38:36 +00:00
rc-box = "1.2.0"
rfd = "0.15.4"
2021-01-27 18:20:47 +00:00
serde = { version = "1", features = ["derive"] }
serde_derive = "1"
2022-11-19 17:20:03 +00:00
serde_cbor = { version = "0.11", optional = true }
serde_json = { version = "1.0", features = ["alloc", "unbounded_depth"] }
serde_with = { version = "3.11", default_features = false, features = ["macros"] }
2022-11-19 17:20:03 +00:00
strum = "0.24"
strum_macros = "0.24"
2025-07-02 08:58:59 +00:00
# remove and replace with extract_if, when our MSRV is 1.87
2021-02-10 20:14:09 +00:00
vec_mut_scan = "0.4"
2023-01-26 15:42:16 +00:00
webbrowser = { version = "0.8.6", optional = true }
2023-01-25 14:25:42 +00:00
winit = { git = "https://github.com/doukutsu-rs/winit.git", rev = "878f206d19af01b0977277929eee5e32667453c0", optional = true, default_features = false, features = ["x11"] }
2022-11-19 17:20:03 +00:00
xmltree = "0.10"
2021-02-24 08:28:47 +00:00
2021-01-27 18:20:47 +00:00
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3", features = ["winuser"] }
2022-03-22 03:51:13 +00:00
[target.'cfg(target_os = "windows")'.build-dependencies]
2022-03-22 04:26:38 +00:00
winres = "0.1"
2021-08-13 01:46:41 +00:00
[target.'cfg(target_os = "macos")'.dependencies]
2022-11-19 17:20:03 +00:00
objc = "0.2"
2021-08-13 01:46:41 +00:00
[target.'cfg(target_os = "android")'.dependencies]
2022-11-19 17:20:03 +00:00
ndk = "0.7"
ndk-glue = "0.7"
ndk-sys = "0.4"
jni = "0.20"
2022-11-21 14:15:51 +00:00
[target.'cfg(target_os = "horizon")'.dependencies]
2022-12-01 13:30:59 +00:00
#deko3d = { path = "./3rdparty/deko3d" }
deko3d = { git = "https://github.com/doukutsu-rs/deko3d-rs", branch = "master" }