zsw/Cargo.toml
Filipe Rodrigues 8fcd911266 Heavily revized image_loader module to be more transparent.
Fixed `rrc::Responder::respond` not notifying the requester sometimes.
All dependencies are now compiled in release mode.
2021-11-17 19:46:13 +00:00

50 lines
640 B
TOML

[package]
edition = "2021"
name = "zsw"
version = "0.1.0"
[dependencies]
# Windowing / Gl
glium = "0.30.2"
# X11
x11 = {version = "2.18.2", features = ["xlib"]}
# Math
cgmath = "0.18.0"
# Image
image = "0.23.14"
# Random
rand = "0.8.4"
# Error handling
anyhow = "1.0.40"
thiserror = "1.0.30"
# Logging
log = "0.4.14"
simplelog = "0.10.0"
# Cmd
clap = "2.33.3"
# Util
num-rational = "0.4.0"
# Filesystem
notify = "4.0.17"
# Threads
parking_lot = "0.11.2"
# Hashing
twox-hash = "1.6.1"
# Compile all dependencies in release mode, or else it's too slow to
# meaningfully tests most things
[profile.dev.package."*"]
opt-level = 3