stevenarella/Cargo.toml

51 lines
1.1 KiB
TOML

[package]
name = "steven"
version = "0.0.1"
authors = [ "Thinkofdeath <thinkofdeath@spigotmc.org>" ]
edition = "2018"
[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
[dependencies]
sha-1 = "0.8.1"
glutin = "0.19.0"
byteorder = "1.2.7"
reqwest = "0.9.5"
serde = "1.0.84"
serde_json = "1.0.34"
flate2 = "1.0.6"
zip = "0.5.0"
image = "0.20.1"
rand = "0.5.5"
hex = "0.3.2"
base64 = "0.10.0"
log = { version = "0.4.6", features = ["std"] }
cgmath = "0.16.1"
lazy_static = "1.2.0"
collision = "0.18.0"
aes = "0.3.2"
cfb8 = "0.3.1"
rsa_public_encrypt_pkcs1 = "0.2.0"
clipboard = "0.5.0"
# clippy = "*"
[dependencies.steven_gl]
path = "./gl"
version = "0"
[dependencies.steven_resources]
path = "./resources"
version = "0"
[dependencies.steven_blocks]
path = "./blocks"
version = "0"
[dependencies.steven_shared]
path = "./shared"
version = "0"