doukutsu-rs/Cargo.toml

50 lines
1.0 KiB
TOML
Raw Normal View History

2020-08-18 16:46:07 +00:00
[package]
authors = ["Alula <julekonopinska@gmail.com>"]
edition = "2018"
name = "doukutsu-rs"
version = "0.1.0"
[profile.release]
lto = true
panic = 'abort'
[dependencies]
2020-08-19 19:11:32 +00:00
approx = "0.3"
bitflags = "1"
2020-08-27 02:43:21 +00:00
bitvec = "0.17.4"
2020-08-18 16:46:07 +00:00
byteorder = "1.3"
2020-08-19 19:11:32 +00:00
directories = "2"
gfx = "0.18"
gfx_core = "0.9"
2020-08-19 11:21:40 +00:00
gfx_device_gl = "0.16"
2020-08-19 19:11:32 +00:00
gfx_window_glutin = "0.30"
gilrs = "0.7"
glyph_brush = "0.5"
glutin = "0.20"
2020-08-18 16:46:07 +00:00
imgui = "0.4.0"
imgui-ext = "0.3.0"
2020-08-19 11:21:40 +00:00
imgui-gfx-renderer = "0.4.0"
imgui-winit-support = {version = "0.4.0", default-features = false, features = ["winit-19"] }
2020-08-19 00:55:21 +00:00
image = {version = "0.22", default-features = false, features = ["png_codec", "pnm", "bmp"] }
itertools = "0.9.0"
2020-08-18 16:46:07 +00:00
lazy_static = "1.4.0"
log = "0.4"
2020-08-27 02:43:21 +00:00
lru = "0.6.0"
2020-08-19 19:11:32 +00:00
lyon = "0.13"
2020-08-18 16:46:07 +00:00
maplit = "1.0.2"
2020-08-19 19:11:32 +00:00
mint = "0.5"
nalgebra = {version = "0.18", features = ["mint"] }
2020-08-27 02:43:21 +00:00
num-derive = "0.3.2"
2020-08-18 16:46:07 +00:00
num-traits = "0.2.12"
2020-08-23 02:17:45 +00:00
owning_ref = "0.4.1"
2020-08-18 16:46:07 +00:00
paste = "1.0.0"
pretty_env_logger = "0.4.0"
2020-08-19 19:11:32 +00:00
serde = "1"
serde_derive = "1"
smart-default = "0.5"
2020-08-18 16:46:07 +00:00
strum = "0.18.0"
strum_macros = "0.18.0"
2020-08-19 19:11:32 +00:00
toml = "0.5"
2020-08-23 02:17:45 +00:00
varint = "0.9.0"
2020-08-19 11:21:40 +00:00
winit = { version = "0.19.3" }