mirror of
https://github.com/doukutsu-rs/doukutsu-rs
synced 2025-09-01 03:15:07 +00:00
25 lines
461 B
TOML
25 lines
461 B
TOML
|
[package]
|
||
|
name = "drsios"
|
||
|
description = "doukutsu-rs targeted for iOS"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
[profile.release]
|
||
|
opt-level = 3
|
||
|
lto = "off"
|
||
|
codegen-units = 256
|
||
|
incremental = true
|
||
|
|
||
|
[profile.dev]
|
||
|
opt-level = 3
|
||
|
lto = "off"
|
||
|
overflow-checks = false
|
||
|
codegen-units = 256
|
||
|
incremental = true
|
||
|
|
||
|
[lib]
|
||
|
crate-type = ["staticlib"]
|
||
|
|
||
|
[dependencies]
|
||
|
doukutsu-rs = { path = "../", default-features = false, features = ["default-base", "backend-winit", "webbrowser"] }
|