editor/Cargo.toml

46 lines
893 B
TOML
Raw Permalink Normal View History

2021-01-05 10:17:41 +00:00
[package]
name = "editor"
version = "0.1.0"
authors = ["Michael Zhang <mail@mzhang.io>"]
edition = "2018"
2021-01-10 07:37:15 +00:00
[profile.release]
debug = true
2021-01-05 10:17:41 +00:00
[workspace]
members = [
"bass-sys",
2021-01-10 20:14:39 +00:00
"framework",
2021-01-15 18:07:20 +00:00
"framework-example-2048",
"multibuild",
2021-01-05 10:17:41 +00:00
]
[dependencies]
2022-01-10 10:30:51 +00:00
anyhow = "1.0.52"
2021-01-05 10:17:41 +00:00
bass-sys = { path = "bass-sys" }
2021-01-13 12:20:02 +00:00
ggez = { git = "https://github.com/ggez/ggez", branch = "devel" }
2022-01-10 10:30:51 +00:00
log = "0.4.14"
2021-01-13 12:02:32 +00:00
stderrlog = "0.5.1"
2022-01-10 10:30:51 +00:00
num = "0.4.0"
ordered-float = "2.10.0"
structopt = "0.3.25"
image = "0.23.14"
imgui = "0.8.2"
2022-01-10 22:49:03 +00:00
imgui-winit-support = { version = "0.8.2", features = ["winit-26"], default-features = false }
2021-01-15 16:46:55 +00:00
framework = { path = "framework" }
2022-01-10 22:49:03 +00:00
imgui-gfx-renderer = "0.8.2"
gfx_core = "0.9.2"
gfx_device_gl = "0.16.2"
2021-01-08 07:21:39 +00:00
[dependencies.libosu]
2022-01-10 22:49:03 +00:00
path = "../libosu"
2021-01-10 09:15:55 +00:00
[features]
clippy = []
2021-01-15 18:07:20 +00:00
[package.metadata.android]
apk_label = "OSU editor"
target_sdk_version = 30
min_sdk_version = 26
fullscreen = true