-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (42 loc) · 1.07 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "remani"
version = "0.1.0"
authors = ["Matthew Tran <[email protected]>"]
edition = '2018'
description = "A modular 7k VSRG that aims to support multiple skin and chart formats"
repository = "https://github.com/0e4ef622/remani"
license = "MIT"
keywords = ["7k", "vsrg", "o2jam", "osumania"]
categories = ["games"]
exclude = ["test/*"]
default-run = "remani"
[dependencies]
piston = "0.53"
piston-texture = "0.8"
pistoncore-glutin_window = "0.69"
piston2d-graphics = "0.40"
piston2d-opengl_graphics = "0.78"
image = "0.23"
cpal = "0.8"
toml = "0.5"
serde = "1.0"
serde_derive = "1.0"
directories = "3.0"
either = "1.6"
nom = "4.0"
conrod_core = "0.74.0"
conrod_piston = "0.74.0"
simplemad = { optional = true, version = "0.9" }
hound = { optional = true, version = "3.4" }
lewton = { optional = true, version = "0.10" }
[patch.crates-io]
cpal = { git = "https://github.com/0e4ef622/cpal", rev = "buffer-size-request" }
[features]
default = ["mp3", "wav", "ogg"]
mp3 = ["simplemad"]
wav = ["hound"]
ogg = ["lewton"]
[profile.release]
lto = true
codegen-units = 1
panic = "abort"