editor/Cargo.toml

33 lines
578 B
TOML
Raw 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-05 10:17:41 +00:00
]
[dependencies]
2021-01-13 12:02:32 +00:00
anyhow = "1.0.38"
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" }
2021-01-13 12:02:32 +00:00
log = "0.4.13"
stderrlog = "0.5.1"
2021-01-08 07:21:39 +00:00
num = "0.3.1"
2021-01-08 10:51:04 +00:00
ordered-float = "2.0.1"
2021-01-09 18:11:56 +00:00
structopt = "0.3.21"
2021-01-13 12:51:33 +00:00
image = "0.23.12"
2021-01-08 07:21:39 +00:00
[dependencies.libosu]
git = "https://github.com/iptq/libosu"
2021-01-13 20:52:21 +00:00
rev = "81677d5ed88936c4a3e64af951ff0ae523c2d403"
2021-01-10 09:15:55 +00:00
[features]
clippy = []