stevenarella/Cargo.toml

47 lines
1.0 KiB
TOML
Raw Normal View History

2015-09-07 16:11:00 -04:00
[package]
2015-09-12 15:31:26 -04:00
name = "steven"
2015-09-07 16:11:00 -04:00
version = "0.0.1"
authors = [ "Thinkofdeath <thinkofdeath@spigotmc.org>" ]
2016-12-09 09:32:02 -05:00
[profile.dev]
# Steven runs horrendously slow with no optimizations, and often freezes.
# However, building with full -O3 optimizations takes too long for a debug build.
# Use an -O1 optimization level strikes a good compromise between build and program performance.
opt-level = 1
2015-09-07 16:11:00 -04:00
[dependencies]
sha1 = "0.6.0"
2018-09-29 16:56:52 -04:00
sdl2 = "0.31.0"
byteorder = "1.2.6"
2016-03-16 13:53:04 -04:00
hyper = "0.8.0"
serde = "0.7.0"
serde_json = "0.7.0"
flate2 = "1.0.2"
zip = "0.4.2"
2018-09-30 20:21:05 -04:00
image = "0.20.0"
2016-03-16 13:53:04 -04:00
rand = "0.3.14"
rustc-serialize = "0.3.24"
base64 = "0.9.3"
log = "0.4.5"
2016-03-16 13:53:04 -04:00
cgmath = "0.7.0"
lazy_static = "1.1.0"
collision = {git = "https://github.com/TheUnnamedDude/collision-rs", rev = "f80825e"}
openssl = "0.7.8"
2016-03-26 10:24:26 -04:00
# clippy = "*"
2015-09-07 16:11:00 -04:00
[dependencies.steven_gl]
path = "./gl"
version = "0"
2015-09-10 06:49:41 -04:00
2016-03-16 14:15:13 -04:00
[dependencies.steven_resources]
path = "./resources"
version = "0"
[dependencies.steven_blocks]
path = "./blocks"
version = "0"
[dependencies.steven_shared]
path = "./shared"
version = "0"